mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
df8ad1c799
Add support for php code sniffer Change-Id: I7dcdd88be4f1f8219f71ab770979284761e09bae
19 lines
386 B
PHP
19 lines
386 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' )
|
|
);
|