From: Platonides Date: Tue, 7 Jun 2011 22:33:41 +0000 (+0000) Subject: Follow up r89707. No need for the explicit concatenations. X-Git-Tag: 1.31.0-rc.0~29620 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dcompta/operations/supprimer.php?a=commitdiff_plain;h=0a20375e467da9747cfea80c9664326dbbd2c7ba;p=lhc%2Fweb%2Fwiklou.git Follow up r89707. No need for the explicit concatenations. --- 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'] ) ?