diff options
author | svncommit <devs@roundcube.net> | 2006-06-29 23:41:40 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-06-29 23:41:40 +0000 |
commit | a894ba5029a09fb9d0453b5cf9c944ce313f8a48 (patch) | |
tree | 34ba2e7a2c82d680fb8d772568efa46a83967f98 /program/steps/mail/getunread.inc | |
parent | ba8f44c4da7724f5e35866277e9775ec26616dc7 (diff) |
Removeable attachments, Auto-default folder creation, bug fixes
Diffstat (limited to 'program/steps/mail/getunread.inc')
-rw-r--r-- | program/steps/mail/getunread.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/getunread.inc b/program/steps/mail/getunread.inc index 437e3aa00..ed4a5fb77 100644 --- a/program/steps/mail/getunread.inc +++ b/program/steps/mail/getunread.inc @@ -27,10 +27,10 @@ if (!empty($a_folders)) { foreach ($a_folders as $mbox_row) { - $commands = sprintf("this.set_unread_count('%s', %d);\n", $mbox_row, $IMAP->messagecount($mbox_row, 'UNSEEN')); + $commands = sprintf("this.set_unread_count('%s', %d);\n", addslashes($mbox_row), $IMAP->messagecount($mbox_row, 'UNSEEN')); rcube_remote_response($commands, TRUE); } } exit; -?>
\ No newline at end of file +?> |