diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-06-20 08:46:16 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-06-20 08:46:16 +0000 |
| commit | 9310d0b52243b263dff6064c0fa274e9f64fc56f (patch) | |
| tree | 3be47a42d489697444b71ffc61516ebb2e002cee /roundcubemail/program/include/main.inc | |
| parent | 6924db547e9c5dc23e5306eff9fc8c8602649b3c (diff) | |
Simplify step inclusion in controller (index.php)
git-svn-id: https://svn.roundcube.net/trunk@1560 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/main.inc')
| -rw-r--r-- | roundcubemail/program/include/main.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index 2740ee35d..a29978a5e 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/program/include/main.inc @@ -475,7 +475,7 @@ function get_input_value($fname, $source, $allow_html=FALSE, $charset=NULL) */ function asciiwords($str) { - return preg_replace('/[^a-z0-9.-_]/i', '', $str); + return preg_replace('/[^a-z0-9._-]/i', '', $str); } /** |
