From: <var...@us...> - 2010-08-13 14:22:21
|
Revision: 7645 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7645&view=rev Author: vargenau Date: 2010-08-13 14:22:15 +0000 (Fri, 13 Aug 2010) Log Message: ----------- Avoid using index.php Modified Paths: -------------- trunk/g Modified: trunk/g =================================================================== --- trunk/g 2010-08-13 13:34:26 UTC (rev 7644) +++ trunk/g 2010-08-13 14:22:15 UTC (rev 7645) @@ -221,7 +221,9 @@ } // Load the default configuration. - include dirname(__FILE__).'/index.php'; + require_once(dirname(__FILE__).'/lib/prepend.php'); + require_once(dirname(__FILE__).'/lib/IniConfig.php'); + IniConfig(dirname(__FILE__)."/config/config-default.ini"); // Override the default configuration for VARIABLES after index.php: // E.g. Use another DB: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |