summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-12-16 18:58:47 +0000
committerthomascube <thomas@roundcube.net>2008-12-16 18:58:47 +0000
commit58687d011f014c03b2c5b08ce7c81372a7f5e4a5 (patch)
tree1652fbc408097540a514fb05a80e058f11cc918d /program
parentd859b0ca1f2bc7f046ff595fab93d17d6f6f42e4 (diff)
Be more tolerant when splitting strings + remove col that we don't have a label for
Diffstat (limited to 'program')
-rw-r--r--program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index 918e5ab28..9a92c19b7 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -136,7 +136,7 @@ function rcmail_message_list($attrib)
if (empty($attrib['columns']))
$a_show_cols = is_array($CONFIG['list_cols']) ? $CONFIG['list_cols'] : array('subject');
else
- $a_show_cols = explode(',', strip_quotes($attrib['columns']));
+ $a_show_cols = preg_split('/[\s,;]+/', strip_quotes($attrib['columns']));
// store column list in a session-variable
$_SESSION['list_columns'] = $a_show_cols;