r89708 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r89707
|
r89708
|
r89709
>
Date:
22:33, 7 June 2011
Author:
platonides
Status:
ok
Tags:
Comment:
Follow up
r89707
. No need for the explicit concatenations.
Modified paths:
/trunk/phase3/includes/installer/Installer.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/installer/Installer.php
—
—
@@ -1239,7 +1239,7 @@
1240
1240
require( "$IP/includes/DefaultSettings.php" );
1241
1241
1242
1242
foreach( $exts as $e ) {
1243
- require_once( $IP . '/extensions' . "/$e/$e.php" );
1243
+ require_once( "$IP/extensions/$e/$e.php" );
1244
1244
}
1245
1245
1246
1246
$hooksWeWant = isset( $wgHooks['LoadExtensionSchemaUpdates'] ) ?
Follow-up revisions
Revision
Commit summary
Author
Date
r92348
MFT to REL1_18:...
hashar
08:57, 16 July 2011
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r89707
quick fix for
bug28983
. Do not use $path in the loop. Even the remaining $e ...
wikinaut
22:30, 7 June 2011
Status & tagging log
22:36, 7 June 2011
Wikinaut
(
talk
|
contribs
)
changed the
status
of r89708
[
removed:
new
added:
ok]