You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Firebug i get following error
SyntaxError: invalid range in character class
in
if ((new RegExp(this._generatePrefix() + '.+')).test(kv[0]) && kv[1]) {
any suggestions?
The text was updated successfully, but these errors were encountered:
Most likely a "-" in the content in _this.generatePrefix. The error stems from an invalid regular expression, so you'd need to make sure any special characters are appropriately escaped before using them in the regular expression.
Sorry, my fault. Merge Mismatch...
In Firebug i get following error
SyntaxError: invalid range in character class
in
if ((new RegExp(this._generatePrefix() + '.+')).test(kv[0]) && kv[1]) {
any suggestions?
The text was updated successfully, but these errors were encountered: