diff --git a/boot.php b/boot.php index fb394c59a6..05da3bba93 100644 --- a/boot.php +++ b/boot.php @@ -9,7 +9,7 @@ require_once('include/nav.php'); require_once('include/cache.php'); define ( 'FRIENDIKA_PLATFORM', 'Friendica'); -define ( 'FRIENDIKA_VERSION', '2.3.1161' ); +define ( 'FRIENDIKA_VERSION', '2.3.1162' ); define ( 'DFRN_PROTOCOL_VERSION', '2.22' ); define ( 'DB_UPDATE_VERSION', 1103 ); diff --git a/library/HTML5/TreeBuilder.php b/library/HTML5/TreeBuilder.php index a64816f567..c0074ec73f 100644 --- a/library/HTML5/TreeBuilder.php +++ b/library/HTML5/TreeBuilder.php @@ -3041,9 +3041,9 @@ class HTML5_TreeBuilder { if (!empty($token['attr'])) { foreach($token['attr'] as $attr) { - // mike@macgirvin.com 2011-10-21, stray double quotes cause everything to abort + // mike@macgirvin.com 2011-10-21, stray double quotes and/or numeric tags cause everything to abort $attr['name'] = str_replace('"','',$attr['name']); - if(!$el->hasAttribute($attr['name'])) { + if(!$el->hasAttribute($attr['name']) && (! is_numeric($attr['name']))) { $el->setAttribute($attr['name'], $attr['value']); } }