mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-28 17:30:40 +00:00
18 lines
385 B
PHP
18 lines
385 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Aliases for invisible Math special pages
|
||
|
*
|
||
|
* There is no need to translate the messages, since the PageTitle does not appear.
|
||
|
*
|
||
|
* @see Math.alias.php for special pages with visible titles.
|
||
|
*
|
||
|
* @file
|
||
|
* @ingroup Extensions
|
||
|
*/
|
||
|
|
||
|
$specialPageAliases = array();
|
||
|
|
||
|
/** English (English) */
|
||
|
$specialPageAliases['en'] = array(
|
||
|
'MathShowImage' => array( 'MathShowImage' )
|
||
|
);
|