[Astrospaces-commits] SF.net SVN: astrospaces: [42] trunk/globals.php
Brought to you by:
p3net
From: <cal...@us...> - 2007-07-30 19:46:38
|
Revision: 42 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=42&view=rev Author: caleb870 Date: 2007-07-30 12:46:37 -0700 (Mon, 30 Jul 2007) Log Message: ----------- Just fixed a minor bug with loading config.php since it's calling a constant that is defined in config.php before its actually defined. Modified Paths: -------------- trunk/globals.php Modified: trunk/globals.php =================================================================== --- trunk/globals.php 2007-07-30 19:40:16 UTC (rev 41) +++ trunk/globals.php 2007-07-30 19:46:37 UTC (rev 42) @@ -19,7 +19,7 @@ @id: $Id$ *********************************************************/ /* Include our larger functions */ -require(AS_LOC_DIRECT.'config.php'); +require('config.php'); /* Do not put 'AS_LOC_DIRECT' before this one */ require(AS_LOC_DIRECT.'functions/template.php'); $template =& new template(); require(AS_LOC_DIRECT.'functions/session.php'); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |