summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2007-10-28 21:44:50 +0000
committerPeter Palfrader <peter@palfrader.org>2007-10-28 21:44:50 +0000
commit9eae6543b9aa45e346e3cbd53bd56df0a6a0a318 (patch)
treea5ccbd127be6044c0b2def62e4758f842a96d084 /web
parent586ddcb0793c4ac6df0ae28874531b90606e242e (diff)
No longer use DB stuff
Diffstat (limited to 'web')
-rw-r--r--web/include/Namespace.inc2
-rw-r--r--web/index.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/web/include/Namespace.inc b/web/include/Namespace.inc
index 4cfeccc..51542f1 100644
--- a/web/include/Namespace.inc
+++ b/web/include/Namespace.inc
@@ -5,7 +5,7 @@
*/
require_once("../include/Config.inc");
-require_once("../include/DB.inc");
+#require_once("../include/DB.inc");
require_once("../include/Messages.inc");
require_once("../include/Session.inc");
require_once("../include/User.inc");
diff --git a/web/index.php b/web/index.php
index 28ac066..7852e25 100644
--- a/web/index.php
+++ b/web/index.php
@@ -5,9 +5,9 @@ require_once( "../include/Template.inc" );
require_once("../include/Tools.inc");
$namespace = new Namespace(
- array( # have_database => 1,
- # have_session => 1,
- # have_user => 1 )
+ array( have_database => 0,
+ have_session => 0,
+ have_user => 0
)
) or
die("Nobody loves me. I don't even have space for a name.");