From 38729133e2697832c09fcaa06571795c08777904 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Wed, 25 Feb 2015 12:49:15 +0100 Subject: [PATCH] HTML5 media tags are short tags --- lib/xmloutputter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xmloutputter.php b/lib/xmloutputter.php index 481b2dedca..71d57e2d56 100644 --- a/lib/xmloutputter.php +++ b/lib/xmloutputter.php @@ -212,7 +212,7 @@ class XMLOutputter { static $empty_tag = array('base', 'meta', 'link', 'hr', 'br', 'param', 'img', 'area', - 'input', 'col'); + 'input', 'col', 'source'); // XXX: check namespace if (in_array($tag, $empty_tag)) { $this->xw->endElement();