From a7838e2a13cf2f8875a34e122c44c9c923648bc6 Mon Sep 17 00:00:00 2001 From: dipsol Date: Mon, 14 Dec 2009 08:06:20 +0000 Subject: Replaced almost every dba::query to dba::read or dba::write. --- lib/debug.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/debug.lib.php') diff --git a/lib/debug.lib.php b/lib/debug.lib.php index 365bebe1..1e65b806 100644 --- a/lib/debug.lib.php +++ b/lib/debug.lib.php @@ -54,7 +54,7 @@ function check_database($host,$username,$pass) { function check_database_inserted($dbh,$db_name) { $sql = "DESCRIBE session"; - $db_results = Dba::query($sql); + $db_results = Dba::read($sql); if (!$db_results) { return false; -- cgit