mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-12 01:08:55 +00:00
6699724d65
Per wikitech-l consensus: https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html Change-Id: I1d2604e3f246ede58ff8245ba2b940f258d2d80c
19 lines
371 B
PHP
19 lines
371 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 = [];
|
|
|
|
/** English (English) */
|
|
$specialPageAliases['en'] = [
|
|
'MathShowImage' => [ 'MathShowImage' ]
|
|
];
|