summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/app.js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-01 07:49:54 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-01 07:49:54 +0000
commite85519db974b5877c19c1b571720ec95feb2558f (patch)
tree966f69aae7d1369439d744d7ee1ba6304416adbe /roundcubemail/program/js/app.js
parent43a5063141e26838745def960d6c739a29808bdc (diff)
- Fix "Server Error! (Not Found)" when using utils/save-pref action (#1487023)
git-svn-id: https://svn.roundcube.net/trunk@4027 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
-rw-r--r--roundcubemail/program/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index f4ec7f3da..f4e8e2f73 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -1294,7 +1294,7 @@ function rcube_webmail()
}
}
- this.http_post('utils/save-pref', '_name=collapsed_folders&_value='+urlencode(this.env.collapsed_folders));
+ this.http_post('save-pref', '_name=collapsed_folders&_value='+urlencode(this.env.collapsed_folders));
this.set_unread_count_display(id, false);
};
@@ -1465,7 +1465,7 @@ function rcube_webmail()
if ((found = $.inArray('subject', this.env.coltypes)) >= 0)
this.set_env('subject_col', found);
- this.http_post('utils/save-pref', { '_name':'list_cols', '_value':this.env.coltypes, '_session':'list_attrib/columns' });
+ this.http_post('save-pref', { '_name':'list_cols', '_value':this.env.coltypes, '_session':'list_attrib/columns' });
};
this.check_droptarget = function(id)