X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=install.php;h=dec2020f5e70136cb7be1f738e6dae0b5bfe503a;hb=daf879dfc6259cfa4e50f5240a1a411e973b5b9e;hp=bf96077cfb8814ea7df327ad9d4467d3b202ac34;hpb=7ab7a50cf928861f2bc539fda5af5a77f8f19df9;p=lhc%2Fweb%2Fwiklou.git diff --git a/install.php b/install.php index bf96077cfb..dec2020f5e 100644 --- a/install.php +++ b/install.php @@ -17,9 +17,9 @@ if ( ! ( is_readable( "./LocalSettings.php" ) } $DP = "./includes"; -include_once( "./LocalSettings.php" ); -include_once( "./AdminSettings.php" ); -include_once( "./maintenance/InitialiseMessages.inc" ); +require_once( "./LocalSettings.php" ); +require_once( "./AdminSettings.php" ); +require_once( "./maintenance/InitialiseMessages.inc" ); if( $wgSitename == "MediaWiki" ) { die( "You must set the site name in \$wgSitename before installation.\n\n" ); @@ -131,7 +131,7 @@ $rootpw=readconsole(); # $wgUseDatabaseMessages = false; # no DB yet -include_once( "{$IP}/Setup.php" ); +require_once( "{$IP}/Setup.php" ); $wgTitle = Title::newFromText( "Installation script" ); $wgDatabase = Database::newFromParams( $wgDBserver, "root", $rootpw, "", 1 );