From 7279fb2ac546c8f4fdee71078820221ba39e896b Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Thu, 3 Jan 2008 21:58:02 +0000 Subject: [PATCH] upgrade.php: needless echo removed; tested on another PostgreSQL database - worked fine git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@286 a1433add-5e2c-0410-b055-b7f2511e0802 --- upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrade.php b/upgrade.php index 333cb32d..31b5138b 100644 --- a/upgrade.php +++ b/upgrade.php @@ -38,7 +38,7 @@ function _pgsql_field_exists($table, $field) { AND pg_catalog.pg_table_is_visible(c.oid) ) AND a.attname = '$field' "; - echo $sql; +// echo $sql; $r = db_query($sql); $row = db_row($r['result']); if($row) {