From: Chad Horohoe Date: Tue, 30 Aug 2011 20:53:26 +0000 (+0000) Subject: Prefix extensions with $IP. Followup r94107 (grumble grumble about people fixmeing... X-Git-Tag: 1.31.0-rc.0~28007 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=b61c84fb6246dc3f4f207bd989ef960c362efb09;p=lhc%2Fweb%2Fwiklou.git Prefix extensions with $IP. Followup r94107 (grumble grumble about people fixmeing rather than doing the 4 character fix themselves...) --- diff --git a/includes/installer/LocalSettingsGenerator.php b/includes/installer/LocalSettingsGenerator.php index 116047410c..30fefee4e2 100644 --- a/includes/installer/LocalSettingsGenerator.php +++ b/includes/installer/LocalSettingsGenerator.php @@ -129,7 +129,7 @@ class LocalSettingsGenerator { foreach( $this->extensions as $extName ) { $encExtName = self::escapePhpString( $extName ); - $localSettings .= "require_once( \"extensions/$encExtName/$encExtName.php\" );\n"; + $localSettings .= "require_once( \"\$IP/extensions/$encExtName/$encExtName.php\" );\n"; } }