summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/settings
diff options
context:
space:
mode:
authorrichs <richs@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-06-29 23:41:40 +0000
committerrichs <richs@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-06-29 23:41:40 +0000
commit46f595457a887d3f4ab4e9991bd64260ebccf58f (patch)
tree03b244edbf6793db2a277f24381111c7eb4ec68d /roundcubemail/program/steps/settings
parent271af6a58c7d0e70253206423bcd0feaa47cd965 (diff)
Removeable attachments, Auto-default folder creation, bug fixes
git-svn-id: https://svn.roundcube.net/trunk@269 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/settings')
-rw-r--r--roundcubemail/program/steps/settings/manage_folders.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/settings/manage_folders.inc b/roundcubemail/program/steps/settings/manage_folders.inc
index dd321f0d8..7274bdc50 100644
--- a/roundcubemail/program/steps/settings/manage_folders.inc
+++ b/roundcubemail/program/steps/settings/manage_folders.inc
@@ -71,8 +71,8 @@ else if ($_action=='rename-folder')
if ($rename && $REMOTE_REQUEST)
{
- $commands = sprintf("this.add_folder_row('%s');", rep_specialchars_output($rename, 'js'));
- $commands .= sprintf("this.remove_folder_row('%s')", rep_specialchars_output($_GET['_folder_oldname'], 'js'));
+ $commands = sprintf("this.add_folder_row('%s');\n", addslashes(rep_specialchars_output($rename, 'js')));
+ $commands .= sprintf("this.remove_folder_row('%s');", rep_specialchars_output($_GET['_folder_oldname'], 'js'));
rcube_remote_response($commands);
}
else if (!$rename && $REMOTE_REQUEST)