diff options
author | alecpl <alec@alec.pl> | 2010-10-01 07:49:54 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-10-01 07:49:54 +0000 |
commit | 249db18585959c9ab3e09b6e91f8fec7cd32e9d0 (patch) | |
tree | 7fdecbad11b517105673f5826a833643bc4e8fcd /skins | |
parent | 0bc51d9d0f8a36f4e0aa1d80ed019c958e233c16 (diff) |
- Fix "Server Error! (Not Found)" when using utils/save-pref action (#1487023)
Diffstat (limited to 'skins')
-rw-r--r-- | skins/default/functions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/default/functions.js b/skins/default/functions.js index 338ce203b..4615a462a 100644 --- a/skins/default/functions.js +++ b/skins/default/functions.js @@ -287,7 +287,7 @@ switch_preview_pane: function(elem) rcmail.env.contentframe = null; rcmail.show_contentframe(false); } - rcmail.http_post('utils/save-pref', '_name=preview_pane&_value='+(elem.checked?1:0)); + rcmail.http_post('save-pref', '_name=preview_pane&_value='+(elem.checked?1:0)); }, /* Message composing */ |