openrat-cms

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

commit e9901bffb30e11bf920b5a1573e399aba8308a71
parent b8bb89ee9b981dc1c59e598d003079dbd68fb178
Author: dankert <devnull@localhost>
Date:   Fri, 26 Mar 2010 23:50:46 +0100

Filter \"ALL\" ergänzt.

Diffstat:
actionClasses/Action.class.php | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/actionClasses/Action.class.php b/actionClasses/Action.class.php @@ -32,6 +32,7 @@ define('OR_FILTER_TEXT' ,'text' ); define('OR_FILTER_FULL' ,'full' ); define('OR_FILTER_NUMBER' ,'123' ); define('OR_FILTER_RAW' ,'raw' ); +define('OR_FILTER_ALL' ,'all' ); /** * Eltern-Klasse fuer alle Actions. @@ -160,6 +161,7 @@ class Action case OR_FILTER_TEXT: case OR_FILTER_FULL: + case OR_FILTER_ALL: // Ausfiltern von Control-Chars ( ASCII < 32 außer CR,LF) und HTML (<,>) $white = ''; $white .= chr(10).chr(13); // Line-Feed, Carriage-Return