From da1158370ca7cdf06909f4da6bcf9b477b892969 Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Thu, 3 Jul 2003 08:44:36 +0000 Subject: [PATCH] added filesystemRoot to initialised check --- lib/System.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/System.inc b/lib/System.inc index 61493a7..a7560e2 100644 --- a/lib/System.inc +++ b/lib/System.inc @@ -31,7 +31,7 @@ class System { function initialised() { global $default; - if ($this->db->query("SELECT count(*) AS count FROM system_settings WHERE name<>'lastIndexUpdate'")) { + if ($this->db->query("SELECT count(*) AS count FROM system_settings WHERE name<>'lastIndexUpdate' AND name<>'filesystemRoot'")) { $this->db->next_record(); return ($this->db->f("count") > 0) ? true : false; } -- libgit2 0.21.4