From ee0f6c8c93a76ae8c172f04b8e34a257ae293914 Mon Sep 17 00:00:00 2001 From: Lars Kneschke Date: Sat, 2 Dec 2000 13:20:39 +0000 Subject: [PATCH] $tables is array not a function index.php was not working, it was a strange error message --- setup/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/index.php b/setup/index.php index 9024fee9da..3591178eb8 100644 --- a/setup/index.php +++ b/setup/index.php @@ -38,7 +38,7 @@ $db->Halt_On_Error = "no"; $tables = $db->table_names(); - if (is_array($tables) && count($tables()) > 0){ + if (is_array($tables) && count($tables) > 0){ /* tables exists. checking for post beta version */ $db->query("select app_version from applications where app_name='admin'"); $db->next_record();