From: Jan Schneider Date: Wed, 29 Dec 2010 15:29:48 +0000 (+0100) Subject: Cast to array (Bug #9473). X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d2e8692d48e3ad62da345138af96b17ded80477b;p=horde.git Cast to array (Bug #9473). --- diff --git a/imp/lib/Prefs/Identity.php b/imp/lib/Prefs/Identity.php index ed05c56bc..3e81c8c4f 100644 --- a/imp/lib/Prefs/Identity.php +++ b/imp/lib/Prefs/Identity.php @@ -227,7 +227,7 @@ class Imp_Prefs_Identity extends Horde_Core_Prefs_Identity { if (!isset($this->_cached['aliases'][$ident])) { $this->_cached['aliases'][$ident] = @array_merge( - $this->getValue('alias_addr', $ident), + (array)$this->getValue('alias_addr', $ident), array($this->getValue('replyto_addr', $ident)) ); }