diff options
author | thomascube <thomas@roundcube.net> | 2010-10-06 08:02:47 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-10-06 08:02:47 +0000 |
commit | cb8ebfcbf8cf72f1aeb44b4fcdd62e071cc00368 (patch) | |
tree | f66c22e0411b469e0fdbfb62ff582669c9aba46b /program/js/app.js | |
parent | cecf83a48d3bde732f5cffacd0499f67ff23254c (diff) |
Hotfixes for release 0.4.1 building new 0.4.2 version
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index 64cc7c631..5dec2ad39 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1292,7 +1292,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); }; @@ -1463,7 +1463,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) |