Index: trunk/phase3/maintenance/FiveUpgrade.inc |
— | — | @@ -537,9 +537,9 @@ |
538 | 538 | $add = array(); |
539 | 539 | while( $row = $this->dbr->fetchObject( $result ) ) { |
540 | 540 | $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 ) ); |
544 | 544 | $this->addChunk( $add ); |
545 | 545 | } |
546 | 546 | $this->lastChunk( $add ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -616,6 +616,7 @@ |
617 | 617 | * (bug 2952) Added Asturian language file with translated namespaces |
618 | 618 | * (bug 2676) Apply a protective transformation on editing input/output |
619 | 619 | for browsers that hit the Unicode blacklist. Patch by plugwash. |
| 620 | +* (bug 2999) Fix encoding conversion of pl_title in upgrade1_5.php |
620 | 621 | |
621 | 622 | |
622 | 623 | === Caveats === |