summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-05-29 07:36:53 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-05-29 07:36:53 +0000
commit0623ac6388975ed43aee3fcb739b00b7bf736d53 (patch)
tree9974cb60dc347e9831fff41711881a3955e4704d /roundcubemail/program/steps
parentbc9cd4682e924657721bde24053a2b182302ed09 (diff)
-don't set Preferences pagetitle in ajax calls
git-svn-id: https://svn.roundcube.net/trunk@1448 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
-rw-r--r--roundcubemail/program/steps/settings/func.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/settings/func.inc b/roundcubemail/program/steps/settings/func.inc
index d303565a8..5c6485734 100644
--- a/roundcubemail/program/steps/settings/func.inc
+++ b/roundcubemail/program/steps/settings/func.inc
@@ -19,7 +19,8 @@
*/
-$OUTPUT->set_pagetitle(rcube_label('preferences'));
+if (!$OUTPUT->ajax_call)
+ $OUTPUT->set_pagetitle(rcube_label('preferences'));
function rcmail_user_prefs_form($attrib)