mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ParserFunctions
synced 2024-11-15 11:59:54 +00:00
add check for $wgWikimediaJenkinsCI isset
Change-Id: If7e38cc4858fd970b5feb90a44a6787df822de98
This commit is contained in:
parent
187ae0cd02
commit
7deac2a8f6
|
@ -35,7 +35,7 @@ $wgPFEnableStringFunctions = false;
|
|||
* Running Jenkins unit tests without setting $wgPFEnableStringFunctions = true;
|
||||
* will cause all the parser tests for string functions to be skipped.
|
||||
*/
|
||||
if ( $wgWikimediaJenkinsCI === true ) {
|
||||
if ( isset( $wgWikimediaJenkinsCI ) && ( $wgWikimediaJenkinsCI === true ) ) {
|
||||
$wgPFEnableStringFunctions = true ;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue