From 50175afd992c0069f9a2918797f74b068eeb5ed2 Mon Sep 17 00:00:00 2001 From: skeeter Date: Sat, 16 Mar 2002 02:58:03 +0000 Subject: [PATCH] Adding line/file error catching to table_names(). --- phpgwapi/inc/class.db_mysql.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.db_mysql.inc.php b/phpgwapi/inc/class.db_mysql.inc.php index ef458e4973..eb747d465c 100644 --- a/phpgwapi/inc/class.db_mysql.inc.php +++ b/phpgwapi/inc/class.db_mysql.inc.php @@ -576,7 +576,7 @@ function table_names() { - $this->query('SHOW TABLES'); + $this->query('SHOW TABLES',__LINE__,__FILE__); $i=0; while($info=mysql_fetch_row($this->Query_ID)) {