openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 3a184a70acfac915f598f08960c89fa18760392b
parent d7dfd8c04aa45af8646c1f7983950ed26aba6bde
Author: dankert <devnull@localhost>
Date:   Fri, 12 Feb 2010 01:11:21 +0100

Für \"alphanum\" weitere Zeichen erlauben.

Diffstat:
MactionClasses/Action.class.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/actionClasses/Action.class.php b/actionClasses/Action.class.php @@ -146,7 +146,7 @@ class Action case 'alphanum': case 'abc123': $value = $REQ[ $varName ]; - return Text::clean($value,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,_-'); + return Text::clean($value,'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,_-!?%&/()'); case 'mail': $value = $REQ[ $varName ];