From: Michael J. Rubinsky Date: Sun, 18 Jan 2009 15:23:44 +0000 (-0500) Subject: fix method name - this is a public method now X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=651d9bf11c23b32d460818796a95530f27e60d08;p=horde.git fix method name - this is a public method now --- diff --git a/kronolith/lib/Imple/ContactAutoCompleter.php b/kronolith/lib/Imple/ContactAutoCompleter.php index 60e30cac0..2405b4e33 100644 --- a/kronolith/lib/Imple/ContactAutoCompleter.php +++ b/kronolith/lib/Imple/ContactAutoCompleter.php @@ -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, ',;'))))) : ''; }