aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-03-02 10:36:19 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-03-02 10:36:19 +0000
commit416b4451d7ae15456d8c0cba4ea66bc753e83269 (patch)
treee14ebcf36be5ec962a1de1a1f7fde19c50555bfa /engine
parentfecebea5fedd59bdc323aaa62a2a9d0f946d876a (diff)
downloadelgg-416b4451d7ae15456d8c0cba4ea66bc753e83269.tar.gz
elgg-416b4451d7ae15456d8c0cba4ea66bc753e83269.tar.bz2
A different table to check db existence against.
git-svn-id: https://code.elgg.org/elgg/trunk@3014 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r--engine/lib/install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/install.php b/engine/lib/install.php
index 9709e95e2..7b4e22e4a 100644
--- a/engine/lib/install.php
+++ b/engine/lib/install.php
@@ -68,7 +68,7 @@
}
if ($dblink = get_db_link('read')) {
- mysql_query("select * from {$CONFIG->dbprefix}entities limit 1",$dblink);
+ mysql_query("select * from {$CONFIG->dbprefix}datalists limit 1",$dblink);
if (mysql_errno($dblink) > 0) return false;
} else return false;