Changeset 184 in subversion
- Timestamp:
- Apr 4, 2006 5:42:54 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/roundcubemail/index.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/index.php
r171 r184 3 3 +-----------------------------------------------------------------------+ 4 4 | RoundCube Webmail IMAP Client | 5 | Version 0.1-20060 320|5 | Version 0.1-20060402 | 6 6 | | 7 7 | Copyright (C) 2005, RoundCube Dev. - Switzerland | … … 41 41 */ 42 42 43 define('RCMAIL_VERSION', '0.1-20060 320');43 define('RCMAIL_VERSION', '0.1-20060402'); 44 44 45 45 … … 85 85 86 86 // catch some url/post parameters 87 $_auth = !empty($_POST['_auth']) ? $_POST['_auth'] : $_GET['_auth'];88 $_task = !empty($_POST['_task']) ? $_POST['_task'] : (!empty($_GET['_task']) ? $_GET['_task'] : 'mail');89 $_action = !empty($_POST['_action']) ? $_POST['_action'] : (!empty($_GET['_action']) ? $_GET['_action'] : '');87 $_auth = get_input_value('_auth', RCUBE_INPUT_GPC); 88 $_task = get_input_value('_task', RCUBE_INPUT_GPC); 89 $_action = get_input_value('_action', RCUBE_INPUT_GPC); 90 90 $_framed = (!empty($_GET['_framed']) || !empty($_POST['_framed'])); 91 92 if (empty($_task)) 93 $_task = 'mail'; 91 94 92 95 if (!empty($_GET['_remote']))
Note: See TracChangeset
for help on using the changeset viewer.
