summaryrefslogtreecommitdiff
path: root/roundcubemail/index.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-08-06 15:55:11 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-08-06 15:55:11 +0000
commite2c3d8f79a2f06e485f2766e67a6afcb1315ebc9 (patch)
tree59fca0553dc43ea99ce7fdfaeb23f0b78df6ddaf /roundcubemail/index.php
parent5156830d1f8b2f0cdcf5fc4882b63c0c9e3da04f (diff)
Finalized 0.1beta2 release
git-svn-id: https://svn.roundcube.net/trunk@297 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/index.php')
-rw-r--r--roundcubemail/index.php15
1 files changed, 6 insertions, 9 deletions
diff --git a/roundcubemail/index.php b/roundcubemail/index.php
index c496b4dc9..313ca0bfd 100644
--- a/roundcubemail/index.php
+++ b/roundcubemail/index.php
@@ -2,9 +2,9 @@
/*
+-----------------------------------------------------------------------+
| RoundCube Webmail IMAP Client |
- | Version 0.1-20060718 |
+ | Version 0.1-beta2 |
| |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland |
+ | Copyright (C) 2005-2006, RoundCube Dev. - Switzerland |
| Licensed under the GNU GPL |
| |
| Redistribution and use in source and binary forms, with or without |
@@ -40,7 +40,7 @@
*/
-define('RCMAIL_VERSION', '0.1-20060718');
+define('RCMAIL_VERSION', '0.1-beta2');
// define global vars
$CHARSET = 'UTF-8';
@@ -95,7 +95,6 @@ else
// catch some url/post parameters
-//$_auth = get_input_value('_auth', RCUBE_INPUT_GPC);
$_task = get_input_value('_task', RCUBE_INPUT_GPC);
$_action = get_input_value('_action', RCUBE_INPUT_GPC);
$_framed = (!empty($_GET['_framed']) || !empty($_POST['_framed']));
@@ -290,10 +289,7 @@ if ($_task=='mail')
if ($_action=='rss')
include('program/steps/mail/rss.inc');
- // kill compose entry from session
-// if (isset($_SESSION['compose']))
-// rcmail_compose_cleanup();
-
+
// make sure the message count is refreshed
$IMAP->messagecount($_SESSION['mbox'], 'ALL', TRUE);
}
@@ -344,7 +340,8 @@ if ($_task=='settings')
if ($_action=='save-prefs')
include('program/steps/settings/save_prefs.inc');
- if ($_action=='folders' || $_action=='subscribe' || $_action=='unsubscribe' || $_action=='create-folder' || $_action=='rename-folder' || $_action=='delete-folder')
+ if ($_action=='folders' || $_action=='subscribe' || $_action=='unsubscribe' ||
+ $_action=='create-folder' || $_action=='rename-folder' || $_action=='delete-folder')
include('program/steps/settings/manage_folders.inc');
}