Skip to content

Commit

Permalink
Merge pull request lucee#492 from Yamaha32088/fix-reMatch
Browse files Browse the repository at this point in the history
Fixes LDEV-1467
  • Loading branch information
micstriit authored May 24, 2018
2 parents c3be493 + ed096bd commit bf5b510
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/lucee/runtime/regex/Perl5Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public static Array match(String strPattern, String strInput, int offset, boolea


int compileOptions=caseSensitive ? 0 : Perl5Compiler.CASE_INSENSITIVE_MASK;
compileOptions+=Perl5Compiler.MULTILINE_MASK;
compileOptions+=Perl5Compiler.SINGLELINE_MASK;
if(offset < 1) offset = 1;


Expand Down Expand Up @@ -263,4 +263,4 @@ public static void main(String[] args) throws MalformedPatternException {
"<function name=\"susi2\" some=\"1\">\n<argument name=\"susi\">\naaa</function>",
1,false);
}
}
}
File renamed without changes.

0 comments on commit bf5b510

Please sign in to comment.