From eb186193d4fa89b3495884037478f96823d3633c Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Tue, 20 Jan 2009 20:42:53 +0000 Subject: [PATCH] functions.inc.php: remove dev comment (echo of sql) git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@538 a1433add-5e2c-0410-b055-b7f2511e0802 --- functions.inc.php | 1 - 1 file changed, 1 deletion(-) diff --git a/functions.inc.php b/functions.inc.php index 13b34314..ada03c85 100644 --- a/functions.inc.php +++ b/functions.inc.php @@ -1576,7 +1576,6 @@ function db_assoc ($result) function db_delete ($table,$where,$delete) { $query = "DELETE FROM $table WHERE " . escape_string($where) . "='" . escape_string($delete) . "'"; - echo $query; $result = db_query ($query); if ($result['rows'] >= 1) {