mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-25 16:05:50 +00:00
14 lines
282 B
PHP
14 lines
282 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Aliases for Math
|
||
|
*
|
||
|
* @file
|
||
|
* @ingroup Extensions
|
||
|
*/
|
||
|
|
||
|
$specialPageAliases = array();
|
||
|
|
||
|
/** English (English) */
|
||
|
$specialPageAliases['en'] = array(
|
||
|
'MathShowImage' => array( 'MathShowImage', 'MathShowImage' ) // No need to translate! The PageTitle does not appear.
|
||
|
);
|