openrat-cms

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

commit 83f732540c7c7dbe84955785b67d0e5caa5dfd57
parent cc44631e95db543bf7c01d9fcbe467a82abfda3f
Author: Jan Dankert <develop@jandankert.de>
Date:   Tue,  7 Jun 2022 21:44:12 +0200

Fix: DSL Lexer: Allow '<' and '>' in operators.

Diffstat:
Mmodules/dsl/DslLexer.class.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/dsl/DslLexer.class.php b/modules/dsl/DslLexer.class.php @@ -190,7 +190,7 @@ class DslLexer continue; } - $operatorChars = ['+' ,'-','/' ,'*','=','|','&',',','.' ]; + $operatorChars = ['>','<','+' ,'-','/' ,'*','=','|','&',',','.' ]; if ( in_array($char,$operatorChars)) { $value = $char;