mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
6889086753
The integration tests depend on the presence of external servers and the user settings. First, people are bothered by failing test due to problems with those servers and second, administrators need to run phpunit tests to verify the configuration settings. Therefore, we move the integration tests to a special page. Bug: T87389 Change-Id: If66f13fe7fa16868cd4b1d8f0e0a6e3d49448b27
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' )
|
|
); |