From 04fa4f0210be258a56b56808fd51a1d04ab642e4 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 1 Dec 2008 21:39:03 -0700 Subject: [PATCH] Fix parameters to func call; no need for reference. --- imp/lib/UI/Compose.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imp/lib/UI/Compose.php b/imp/lib/UI/Compose.php index b79047cb5..4b4049838 100644 --- a/imp/lib/UI/Compose.php +++ b/imp/lib/UI/Compose.php @@ -15,9 +15,9 @@ class IMP_UI_Compose { /** */ - function expandAddresses($input, &$imp_compose) + function expandAddresses($input, $imp_compose) { - $result = $imp_compose->expandAddresses($this->getAddressList($input, null, null, null, true)); + $result = $imp_compose->expandAddresses($this->getAddressList($input)); if (is_array($result)) { $GLOBALS['notification']->push(_("Please resolve ambiguous or invalid addresses."), 'horde.warning'); -- 2.11.0