diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-03-10 11:49:20 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-03-10 11:49:20 +0100 |
commit | 8b771646fadcde0abb27c2218a45942b95734838 (patch) | |
tree | 8c438cdc684cac4a0c03c123a7eb2e2fc2026ca2 /program/include/rcmail.php | |
parent | 507876cf038f87953702e34596d14d7f57666ccd (diff) |
Fix so task name can really contain all from a-z0-9_- characters (#1488941)
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 b2d6966d0..1bde4034f 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -123,7 +123,7 @@ class rcmail extends rcube */ public function set_task($task) { - $task = asciiwords($task); + $task = asciiwords($task, true); if ($this->user && $this->user->ID) $task = !$task ? 'mail' : $task; |