diff options
author | thomascube <thomas@roundcube.net> | 2008-06-20 08:46:16 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-06-20 08:46:16 +0000 |
commit | 6ea6c9b96e33f0c6616ff270cc5b81efe216a209 (patch) | |
tree | 4a377687aa807a699db1791f42b4e8c5d8a1d7c6 /program/include/rcmail.php | |
parent | 9f6adf92647e729ad1dd796447f9d4cf9859fe7a (diff) |
Simplify step inclusion in controller (index.php)
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 0b5bcdb95..009ad0448 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -84,7 +84,7 @@ class rcmail // set task and action properties $this->set_task(strip_quotes(get_input_value('_task', RCUBE_INPUT_GPC))); - $this->action = strip_quotes(get_input_value('_action', RCUBE_INPUT_GPC)); + $this->action = asciiwords(get_input_value('_action', RCUBE_INPUT_GPC)); // connect to database $GLOBALS['DB'] = $this->get_dbh(); |