[Astrospaces-commits] SF.net SVN: astrospaces: [44] trunk/config.php
Brought to you by:
p3net
|
From: <cal...@us...> - 2007-07-30 20:16:11
|
Revision: 44
http://astrospaces.svn.sourceforge.net/astrospaces/?rev=44&view=rev
Author: caleb870
Date: 2007-07-30 13:16:14 -0700 (Mon, 30 Jul 2007)
Log Message:
-----------
A small fix for an error I made in the configuration file, which was that I put the prefix for the DB tables as a prefix for the directory declarations accidentally.
Modified Paths:
--------------
trunk/config.php
Modified: trunk/config.php
===================================================================
--- trunk/config.php 2007-07-30 20:02:42 UTC (rev 43)
+++ trunk/config.php 2007-07-30 20:16:14 UTC (rev 44)
@@ -13,8 +13,8 @@
define('AS_EXT', '.php');
define('AS_LANG', 'en-us');
-define('AS_LOC_URL', AS_DB_PREFIX.'http://localhost/');
-define('AS_LOC_DIRECT', AS_DB_PREFIX.'C:/path/to/astrospaces/');
+define('AS_LOC_URL', 'http://localhost/');
+define('AS_LOC_DIRECT', 'C:/path/to/astrospaces/');
/* These settings are constants and must NOT
be altered. Doing so will prevent AstroSPACES
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|