diff --git a/code/ryzom/tools/server/ryzom_ams/www/html/installer/libsetup.php b/code/ryzom/tools/server/ryzom_ams/www/html/installer/libsetup.php index 90df91532..cdc19ed28 100644 --- a/code/ryzom/tools/server/ryzom_ams/www/html/installer/libsetup.php +++ b/code/ryzom/tools/server/ryzom_ams/www/html/installer/libsetup.php @@ -23,7 +23,7 @@ error_reporting( E_ALL ); if (file_exists('../config.php')) { - require( '../config.php' ); + require_once( '../config.php' ); } else { //copy config.default.php to config.php! if (!file_exists('../config.php')) { @@ -31,6 +31,8 @@ echo "failed to copy ../config.php ...\n"; echo '
Reload! '; exit; + } else { + require_once( '../config.php' ); } } }