https://bugzilla.wikimedia.org/show_bug.cgi?id=50971

--- Comment #3 from physikerwelt <[email protected]> ---
Is there a way to figure out which version of the math extension wmf9 uses...
in the math extension there is no tag for that
If it's not an error in the .i18 file the error must be somewhere in the
Math.hooks.php 

    /**
     * List of message keys for the various math output settings.
     *
     * @return array of strings
     */
    private static function getMathNames() {
        global $wgUseMathJax, $wgUseLaTeXML;
        $names = array(
            MW_MATH_PNG => wfMessage( 'mw_math_png' )->escaped(),
            MW_MATH_SOURCE => wfMessage( 'mw_math_source' )->escaped(),
        );
        if ( $wgUseMathJax ) {
            $names[MW_MATH_MATHJAX] = wfMessage( 'mw_math_mathjax'
)->escaped();
        }
        if ( $wgUseLaTeXML ) {
            $names[MW_MATH_LATEXML] = wfMessage( 'mw_math_latexml'
)->escaped();
        }
        return $names;
    }

The only thing that changed is that I added $wgUseLaTeXML
but this is defined in Math.php as well

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to