summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-08-29 12:30:55 +0000
committerthomascube <thomas@roundcube.net>2008-08-29 12:30:55 +0000
commit48aff91f7edf261aa45c567f10ee69daea539ae0 (patch)
treedd17b0fefbc9bb08ea32c77bf2df406f1ec00729 /index.php
parent7789fddb79e20324224ca24de0c501d6c4f85631 (diff)
Moved code block to a more appropriate position + codestyle
Diffstat (limited to 'index.php')
-rw-r--r--index.php18
1 files changed, 8 insertions, 10 deletions
diff --git a/index.php b/index.php
index aa6bf1293..46c4229a0 100644
--- a/index.php
+++ b/index.php
@@ -2,7 +2,7 @@
/*
+-------------------------------------------------------------------------+
| RoundCube Webmail IMAP Client |
- | Version 0.2-20080620 |
+ | Version 0.2-20080829 |
| |
| Copyright (C) 2005-2008, RoundCube Dev. - Switzerland |
| |
@@ -166,7 +166,13 @@ if (empty($RCMAIL->user->ID)) {
// handle keep-alive signal
-if ($RCMAIL->action=='keep-alive') {
+if ($RCMAIL->action == 'keep-alive') {
+ $OUTPUT->reset();
+ $OUTPUT->send();
+}
+// save preference value
+else if ($RCMAIL->action == 'save-pref') {
+ $RCMAIL->user->save_prefs(array(get_input_value('_name', RCUBE_INPUT_POST) => get_input_value('_value', RCUBE_INPUT_POST)));
$OUTPUT->reset();
$OUTPUT->send();
}
@@ -201,14 +207,6 @@ $action_map = array(
)
);
-// save preference value
-if ($RCMAIL->action=='save-pref')
- {
- $USER->save_prefs(array(get_input_value('_name', RCUBE_INPUT_POST) => get_input_value('_value', RCUBE_INPUT_POST)));
- $OUTPUT->reset();
- $OUTPUT->send();
- }
-
// include task specific functions
include_once 'program/steps/'.$RCMAIL->task.'/func.inc';