Fix parameters to func call; no need for reference.
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 2 Dec 2008 04:39:03 +0000 (21:39 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Tue, 2 Dec 2008 04:39:03 +0000 (21:39 -0700)
imp/lib/UI/Compose.php

index b79047c..4b40498 100644 (file)
@@ -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');