r10319 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r10318‎ | r10319 | r10320 >
Date:20:14, 30 July 2005
Author:vibber
Status:old
Tags:
Comment:
* (bug 2999) Fix encoding conversion of pl_title in upgrade1_5.php
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/maintenance/FiveUpgrade.inc (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/FiveUpgrade.inc
@@ -537,9 +537,9 @@
538538 $add = array();
539539 while( $row = $this->dbr->fetchObject( $result ) ) {
540540 $add[] = array(
541 - 'pl_from' => $row->l_from,
542 - 'pl_namespace' => $row->cur_namespace,
543 - 'pl_title' => $row->cur_title );
 541+ 'pl_from' => $row->l_from,
 542+ 'pl_namespace' => $row->cur_namespace,
 543+ 'pl_title' => $this->conv( $row->cur_title ) );
544544 $this->addChunk( $add );
545545 }
546546 $this->lastChunk( $add );
Index: trunk/phase3/RELEASE-NOTES
@@ -616,6 +616,7 @@
617617 * (bug 2952) Added Asturian language file with translated namespaces
618618 * (bug 2676) Apply a protective transformation on editing input/output
619619 for browsers that hit the Unicode blacklist. Patch by plugwash.
 620+* (bug 2999) Fix encoding conversion of pl_title in upgrade1_5.php
620621
621622
622623 === Caveats ===

Status & tagging log