projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5911626
)
Bug #9447: Translate mailbox names in search query text
author
Michael M Slusarz
<slusarz@curecanti.org>
Tue, 14 Dec 2010 05:19:28 +0000
(22:19 -0700)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Tue, 14 Dec 2010 05:19:28 +0000
(22:19 -0700)
imp/lib/Search/Query.php
patch
|
blob
|
history
diff --git
a/imp/lib/Search/Query.php
b/imp/lib/Search/Query.php
index
3208817
..
2e9e1f2
100644
(file)
--- a/
imp/lib/Search/Query.php
+++ b/
imp/lib/Search/Query.php
@@
-233,7
+233,7
@@
class IMP_Search_Query implements Serializable
}
array_pop($text);
- return implode(' ', $text) . ' ' . _("in") . ' [' . implode(', ',
$this->mboxes
) . ']';
+ return implode(' ', $text) . ' ' . _("in") . ' [' . implode(', ',
array_map(array('IMP', 'displayFolder'), $this->mboxes)
) . ']';
}
}