From d2e8692d48e3ad62da345138af96b17ded80477b Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Wed, 29 Dec 2010 16:29:48 +0100 Subject: [PATCH] Cast to array (Bug #9473). --- imp/lib/Prefs/Identity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) ); } -- 2.11.0