projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a9ef60
)
MFB: Fix argument order (Bug #7343).
author
Jan Schneider
<jan@horde.org>
Wed, 30 Dec 2009 18:04:09 +0000
(19:04 +0100)
committer
Jan Schneider
<jan@horde.org>
Wed, 30 Dec 2009 18:04:09 +0000
(19:04 +0100)
ingo/lib/Script/Imap.php
patch
|
blob
|
history
diff --git
a/ingo/lib/Script/Imap.php
b/ingo/lib/Script/Imap.php
index
5da4828
..
3ddfaf0
100644
(file)
--- 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;