Compare commits

...

1 Commits

Author SHA1 Message Date
Daniel Seifert 2aea43095d
add word boundaries to body tag regexp 2022-05-31 09:00:21 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class StageMarker extends Base
*/
protected function getRegexPattern(): string
{
return '/(<\s*body.*?>)/m';
return '/(<\s*\bbody\b.*?>)/m';
}
/**