From 0a20375e467da9747cfea80c9664326dbbd2c7ba Mon Sep 17 00:00:00 2001 From: Platonides Date: Tue, 7 Jun 2011 22:33:41 +0000 Subject: [PATCH] Follow up r89707. No need for the explicit concatenations. --- includes/installer/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/Installer.php b/includes/installer/Installer.php index 5c75f327af..646644d8a8 100644 --- a/includes/installer/Installer.php +++ b/includes/installer/Installer.php @@ -1239,7 +1239,7 @@ abstract class Installer { require( "$IP/includes/DefaultSettings.php" ); foreach( $exts as $e ) { - require_once( $IP . '/extensions' . "/$e/$e.php" ); + require_once( "$IP/extensions/$e/$e.php" ); } $hooksWeWant = isset( $wgHooks['LoadExtensionSchemaUpdates'] ) ? -- 2.20.1