From ffaea6f6ded918d8d12d858ede0cda8ef5655aa4 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Tue, 02 Mar 2010 15:17:07 -0500 Subject: [PATCH] - Fix Recipient/Sender column name in drafts folder (#1486351) --- program/steps/mail/func.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index be3bbbf..491f79a 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -158,7 +158,7 @@ // show 'to' instead of 'from' in sent/draft messages if ((strpos($mbox.$delim, $CONFIG['sent_mbox'].$delim)===0 || strpos($mbox.$delim, $CONFIG['drafts_mbox'].$delim)===0) - && ($f = array_search('from', $a_show_cols)) && !array_search('to', $a_show_cols)) + && (($f = array_search('from', $a_show_cols)) !== false) && array_search('to', $a_show_cols) === false) $a_show_cols[$f] = 'to'; // add col definition -- Gitblit v1.9.1