From 4f0fa89d9be0b6e4190ccc8afc03259b8ac294e6 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 29 Jan 2006 23:00:33 +0000 Subject: [PATCH] Suppress errors in query() --- db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db.php b/db.php index c0bcf7d..543dea2 100644 --- a/db.php +++ b/db.php @@ -217,7 +217,7 @@ class DB_Abstract $time = microtime(); $this->querystr = $string; - $this->result = call_user_func($this->commands['query'], $this->dblink, $string); + $this->result = @call_user_func($this->commands['query'], $this->dblink, $string); if (!$this->result) { -- 2.22.5