mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-17 02:41:02 +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;
|
break;
|
||||||
}
|
}
|
||||||
// check for regular expression "/ $/"
|
// 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 += '$';
|
str += '$';
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user