Allow hyphens in HTML tags HFJ-1951
parent
e412c3a228
commit
8cb0aad09e
|
@ -3414,7 +3414,7 @@ class H5PContentValidator {
|
||||||
return '<';
|
return '<';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!preg_match('%^<\s*(/\s*)?([a-zA-Z0-9]+)([^>]*)>?|(<!--.*?-->)$%', $string, $matches)) {
|
if (!preg_match('%^<\s*(/\s*)?([a-zA-Z0-9\-]+)([^>]*)>?|(<!--.*?-->)$%', $string, $matches)) {
|
||||||
// Seriously malformed.
|
// Seriously malformed.
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue