Add default value for user option mathJax

Bug: 63915
Change-Id: I9aa0b1c9a3f09c412f14756ffd251957b7777a47
This commit is contained in:
Moritz Schubotz (Physikerwelt) 2014-04-21 09:26:35 +00:00 committed by Physikerwelt
parent 6781f30a80
commit 75999d5aae
1 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,8 @@ $wgMathValidModes = array( MW_MATH_PNG, MW_MATH_SOURCE );
* Valid options are defined in $wgMathValidModes.
*/
$wgDefaultUserOptions['math'] = MW_MATH_PNG;
/** @var boolean $wgDefaultUserOptions['mathJax'] determines if client-side MathJax is enabled by default */
$wgDefaultUserOptions['mathJax'] = false;
/** Location of the texvc binary */
$wgTexvc = __DIR__ . '/math/texvc';