fix method name - this is a public method now
authorMichael J. Rubinsky <mrubinsk@horde.org>
Sun, 18 Jan 2009 15:23:44 +0000 (10:23 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Sun, 18 Jan 2009 15:23:44 +0000 (10:23 -0500)
kronolith/lib/Imple/ContactAutoCompleter.php

index 60e30ca..2405b4e 100644 (file)
@@ -86,7 +86,7 @@ class Imple_ContactAutoCompleter extends Imple
     protected function _expandAddresses($addrString)
     {
         return preg_match('|[^\s]|', $addrString)
-            ? $this->_getAddressList(reset(array_filter(array_map('trim', Horde_Mime_Address::explode($addrString, ',;')))))
+            ? $this->getAddressList(reset(array_filter(array_map('trim', Horde_Mime_Address::explode($addrString, ',;')))))
             : '';
     }