projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d8c1cd
)
Fix undefined error
author
Michael M Slusarz
<slusarz@curecanti.org>
Wed, 10 Feb 2010 07:58:16 +0000
(
00:58
-0700)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Wed, 10 Feb 2010 07:58:16 +0000
(
00:58
-0700)
imp/lib/Ui/Message.php
patch
|
blob
|
history
diff --git
a/imp/lib/Ui/Message.php
b/imp/lib/Ui/Message.php
index
9c71596
..
007cc28
100644
(file)
--- a/
imp/lib/Ui/Message.php
+++ b/
imp/lib/Ui/Message.php
@@
-410,7
+410,9
@@
class IMP_Ui_Message
{
$tmp_summary = array();
foreach ($display as $val) {
- $tmp_summary[] = $summary[$val];
+ if (isset($summary[$val])) {
+ $tmp_summary[] = $summary[$val];
+ }
}
return '<div class="mimePartInfo' . ($atc ? ' mimePartInfoAtc' : '') . '"><div>' . implode(' ', $tmp_summary) . '</div></div>';
}