From: tassium Date: Wed, 5 Apr 2006 19:40:41 +0000 (+0000) Subject: Modified configtest to use the new init.php system. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=09efeab8a14494a21784aa680a80e9d5df407190;p=squirrelmail.git Modified configtest to use the new init.php system. Without this change, configtest did not work. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11027 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/configtest.php b/src/configtest.php index 0d6be68a..5b20b21b 100644 --- a/src/configtest.php +++ b/src/configtest.php @@ -47,8 +47,7 @@ $allow_remote_configtest=false; * later. */ if (file_exists(SM_PATH . 'config/config.php')) { - include(SM_PATH . 'config/config.php'); - include(SM_PATH . 'functions/strings.php'); + require(SM_PATH . 'include/init.php'); } ?> @@ -689,4 +688,4 @@ if ($warnings) { EOF; echo $footer; } -?> \ No newline at end of file +?>