summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/mail
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-08-11 21:11:15 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-08-11 21:11:15 +0000
commite9421350a19127b4f76d22eacc6d46d6cb204428 (patch)
tree36f1ed74c761d6ca3321ad7886426f1a31936b34 /roundcubemail/program/steps/mail
parent0107f2820a57403d655c52b721b17a632b8173ec (diff)
More encoding issues; enhanced debugging functions
git-svn-id: https://svn.roundcube.net/trunk@314 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail')
-rw-r--r--roundcubemail/program/steps/mail/func.inc11
1 files changed, 6 insertions, 5 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc
index 4b3114be9..9c27ad9db 100644
--- a/roundcubemail/program/steps/mail/func.inc
+++ b/roundcubemail/program/steps/mail/func.inc
@@ -214,6 +214,7 @@ function rcmail_render_folder_tree_html(&$arrFolders, &$special, &$mbox_name, $m
else if ($folder['id']==$CONFIG['junk_mbox'])
$class_name = 'junk';
+ $js_name = rep_specialchars_output($folder['id'], 'js');
$out .= sprintf('<li id="rcmbx%s" class="mailbox %s %s%s%s"><a href="%s&amp;_mbox=%s"'.
' onclick="return %s.command(\'list\',\'%s\')"'.
' onmouseover="return %s.focus_mailbox(\'%s\')"' .
@@ -223,17 +224,17 @@ function rcmail_render_folder_tree_html(&$arrFolders, &$special, &$mbox_name, $m
$class_name,
$zebra_class,
$unread_count ? ' unread' : '',
- addslashes($folder['id'])==addslashes($mbox_name) ? ' selected' : '',
+ $folder['id']==$mbox_name ? ' selected' : '',
$COMM_PATH,
urlencode($folder['id']),
$JS_OBJECT_NAME,
- addslashes($folder['id']),
+ $js_name,
$JS_OBJECT_NAME,
- addslashes($folder['id']),
+ $js_name,
$JS_OBJECT_NAME,
- addslashes($folder['id']),
+ $js_name,
$JS_OBJECT_NAME,
- addslashes($folder['id']),
+ $js_name,
$title,
rep_specialchars_output($foldername, 'html', 'all'));