Index: branches/REL1_18/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -29,6 +29,7 @@ |
30 | 30 | when the function exists but is disabled. Introduced Maintenance::posix_isatty(). |
31 | 31 | * (bug 33305) Make mw.util.addCSS resistant to IE's @font-face bug by setting |
32 | 32 | cssText after DOM insertion. |
| 33 | +* (bug 29102) Upgrade fails "Unknown character set: 'mysql4'. |
33 | 34 | |
34 | 35 | == MediaWiki 1.18 == |
35 | 36 | 2011-11-24 |
Index: branches/REL1_18/phase3/includes/installer/MysqlInstaller.php |
— | — | @@ -168,7 +168,7 @@ |
169 | 169 | $existingEngine = false; |
170 | 170 | } else { |
171 | 171 | if ( preg_match( '/^latin1/', $row->Collation ) ) { |
172 | | - $existingSchema = 'mysql4'; |
| 172 | + $existingSchema = 'latin1'; |
173 | 173 | } elseif ( preg_match( '/^utf8/', $row->Collation ) ) { |
174 | 174 | $existingSchema = 'utf8'; |
175 | 175 | } elseif ( preg_match( '/^binary/', $row->Collation ) ) { |