From 44bace96891ec7688bfa1afd60e89b7fe543ef24 Mon Sep 17 00:00:00 2001 From: fidian Date: Mon, 7 May 2001 14:36:10 +0000 Subject: [PATCH] * Disabled errors (see comment for why) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1338 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/smtp.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/functions/smtp.php b/functions/smtp.php index 96b5eddb..493276a7 100644 --- a/functions/smtp.php +++ b/functions/smtp.php @@ -44,7 +44,9 @@ function expandAddrs ($array) { global $domain; - $abook = addressbook_init(); + // don't show errors -- kinda critical that we don't see + // them here since the redirect won't work if we do show them + $abook = addressbook_init(false); for ($i=0; $i < count($array); $i++) { $result = $abook->lookup($array[$i]); $ret = ""; -- 2.25.1