Index: trunk/phase3/includes/db/DatabaseMysql.php |
— | — | @@ -889,7 +889,7 @@ |
890 | 890 | protected function getDefaultSchemaVars() { |
891 | 891 | $vars = parent::getDefaultSchemaVars(); |
892 | 892 | $vars['wgDBTableOptions'] = str_replace( 'TYPE', 'ENGINE', $GLOBALS['wgDBTableOptions'] ); |
893 | | - $vars['wgDBTableOptions'] = str_replace( 'CHARSET=mysql4', 'CHARSET=binary', $GLOBALS['wgDBTableOptions'] ); |
| 893 | + $vars['wgDBTableOptions'] = str_replace( 'CHARSET=mysql4', 'CHARSET=binary', $vars['wgDBTableOptions'] ); |
894 | 894 | return $vars; |
895 | 895 | } |
896 | 896 | |