Skip to content

Commit 25aa365

Browse files
committed
fix reFind usage
1 parent 10c5db5 commit 25aa365

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

models/SentryService.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ component accessors=true singleton {
875875

876876
// Skip lines that are clearly not CFML-related (e.g., pure Java frames)
877877
// but don't prematurely skip — let the regex decide
878-
var refMatches = reFindNoCase( templatePattern, trimmedLine, 1, true );
878+
var refMatches = reFindNoCase( templatePattern, trimmedLine, 1, true, "all" );
879879

880880
if ( refMatches.len() && refMatches.pos[ 1 ] > 0 ) {
881881
var templatePath = mid(

0 commit comments

Comments
 (0)