1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-08 15:57:01 +02:00

Fix issue processwire/processwire-issues#200 where the WireMarkupRegions self-closing tags list needed <link> and a few others

This commit is contained in:
Ryan Cramer
2017-03-10 06:08:12 -05:00
parent ed0ba504bc
commit 9df4469314

View File

@@ -31,8 +31,23 @@ class WireMarkupRegions extends Wire {
*
*/
protected $selfClosingTags = array(
'input',
'link',
'area',
'base',
'br',
'col',
'command',
'embed',
'hr',
'img',
'input',
'keygen',
'link',
'meta',
'param',
'source',
'track',
'wbr',
);
/**