From: Jan Schneider Date: Wed, 30 Dec 2009 18:04:09 +0000 (+0100) Subject: MFB: Fix argument order (Bug #7343). X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9dee454a2f4a39655ae4fc40bb654caac03876d1;p=horde.git MFB: Fix argument order (Bug #7343). --- diff --git a/ingo/lib/Script/Imap.php b/ingo/lib/Script/Imap.php index 5da4828ad..3ddfaf0ce 100644 --- a/ingo/lib/Script/Imap.php +++ b/ingo/lib/Script/Imap.php @@ -205,7 +205,7 @@ class Ingo_Script_Imap extends Ingo_Script $ob->headerText($val['field'], $val['value'], $val['match'] == 'not contain'); } else { $headers = array(); - foreach (explode($val['field'], ',') as $header) { + foreach (explode(',', $val['field']) as $header) { $headerOb = $this->_getQuery($params); $headerOb->headerText($header, $val['value'], $val['match'] == 'not contain'); $headers[] = $headerOb;