mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
only care for regular expression starting with /, as everything else is to ambigious eg. "replys[$row][reply_comment]" has a $ followed by an r, which is also first char of that expression
This commit is contained in:
parent
22b6084224
commit
5d3d61e5b0
@ -71,7 +71,7 @@
|
||||
break;
|
||||
}
|
||||
// check for regular expression "/ $/"
|
||||
if (_p.expr.charAt(_p.pos) == _p.expr.charAt(0))
|
||||
if (_p.expr.charAt(_p.pos) == '/' && _p.expr.charAt(0) == '/')
|
||||
{
|
||||
str += '$';
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user