* (bug 4389) Fix math options on zh-hk and zh-tw (but not localized)
There was a bogus getMathOptions() method which returns a nonexitent variable. Removing this, it falls back to the simplified chinese text which is better than an error and no options.
This commit is contained in:
parent
2ec5f7958b
commit
029eb94e66
2 changed files with 1 additions and 5 deletions
|
|
@ -359,6 +359,7 @@ fully support the editing toolbar, but was found to be too confusing.
|
|||
but it can be turned back on for random users to replicate the previous
|
||||
1.6 dev behavior.
|
||||
* Add 'GetInternalURL' hook to match the GetFullURL and GetLocalURL ones
|
||||
* (bug 4389) Fix math options on zh-hk and zh-tw (but not localized)
|
||||
|
||||
|
||||
=== Caveats ===
|
||||
|
|
|
|||
|
|
@ -917,11 +917,6 @@ class LanguageZh_tw extends LanguageZh_cn {
|
|||
return $wgSkinNamesZh_tw;
|
||||
}
|
||||
|
||||
function getMathNames() {
|
||||
global $wgMathNamesZh_tw;
|
||||
return $wgMathNamesZh_tw;
|
||||
}
|
||||
|
||||
function getMessage( $key ) {
|
||||
global $wgAllMessagesZh_tw;
|
||||
if(array_key_exists($key, $wgAllMessagesZh_tw))
|
||||
|
|
|
|||
Loading…
Reference in a new issue