From 9b0c8c2ac7b0b5aa08df3f08ab34fac115c01667 Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Tue, 8 Mar 2016 14:19:00 +0100 Subject: [PATCH] error msg --- lib/php/db/table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/php/db/table.php b/lib/php/db/table.php index 6d24da70..3f8a261b 100644 --- a/lib/php/db/table.php +++ b/lib/php/db/table.php @@ -269,7 +269,7 @@ FROM pg_catalog.pg_attribute a WHERE a.attrelid = (SELECT c.oid FROM pg_catalog. } - if (empty($this->fields)) bye($this->name." does not exists!"); + if (empty($this->fields)) bye("Table `".$this->name."` does not exists into database ".$this->db->name."!"); } #bye($this->fields); -- 2.47.3