mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-11-15 03:23:45 +00:00
Merge "Drop wgCodeEditorEnableCore, default on, pointless to disable"
This commit is contained in:
commit
e09b486175
|
@ -31,9 +31,6 @@
|
|||
"i18n"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"CodeEditorEnableCore": true
|
||||
},
|
||||
"DefaultUserOptions": {
|
||||
"usecodeeditor": 1
|
||||
},
|
||||
|
|
|
@ -8,9 +8,6 @@ class CodeEditorHooks {
|
|||
* @return null|string
|
||||
*/
|
||||
public static function getPageLanguage( Title $title, $model, $format ) {
|
||||
global $wgCodeEditorEnableCore;
|
||||
|
||||
if ( $wgCodeEditorEnableCore ) {
|
||||
if ( $model === CONTENT_MODEL_JAVASCRIPT ) {
|
||||
return 'javascript';
|
||||
} elseif ( $model === CONTENT_MODEL_CSS ) {
|
||||
|
@ -18,7 +15,6 @@ class CodeEditorHooks {
|
|||
} elseif ( $model === CONTENT_MODEL_JSON ) {
|
||||
return 'json';
|
||||
}
|
||||
}
|
||||
|
||||
// Give extensions a chance
|
||||
// Note: $model and $format were added around the time of MediaWiki 1.28.
|
||||
|
|
Loading…
Reference in a new issue