1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-05 05:37:49 +02:00

Replace curly braces with square brackets in string offsets (#224)

This commit is contained in:
Edi Modrić
2019-07-31 04:50:43 +02:00
committed by Edward Z. Yang
parent b91833877a
commit b88fcd180c
3 changed files with 3 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ class HTMLPurifier_ChildDef_Custom extends HTMLPurifier_ChildDef
protected function _compileRegex()
{
$raw = str_replace(' ', '', $this->dtd_regex);
if ($raw{0} != '(') {
if ($raw[0] != '(') {
$raw = "($raw)";
}
$el = '[#a-zA-Z0-9_.-]+';