From: Chad Horohoe Date: Sat, 9 Aug 2014 16:36:07 +0000 (+0100) Subject: Followup 248ac9e: set $wgAutoloadClasses to an array after declaring X-Git-Tag: 1.31.0-rc.0~14495 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=cccd402c41af6822e56d9db5ea6893c83a47ca18;p=lhc%2Fweb%2Fwiklou.git Followup 248ac9e: set $wgAutoloadClasses to an array after declaring Change-Id: I07cc526ff3145c38bc08cd9b83fb266dc20a47c1 --- diff --git a/includes/installer/Installer.php b/includes/installer/Installer.php index 7d7741620a..57fdab348c 100644 --- a/includes/installer/Installer.php +++ b/includes/installer/Installer.php @@ -535,6 +535,7 @@ abstract class Installer { // registration out of the global scope and into a real format. // @see https://bugzilla.wikimedia.org/67440 global $wgAutoloadClasses; + $wgAutoloadClasses = array(); wfSuppressWarnings(); $_lsExists = file_exists( "$IP/LocalSettings.php" );