浏览代码

Undo this xhtml-compatibility thing because the html_tag function is used
incorrectly in many places around the code: no value is specified while
tags do have a value.

Thijs Kinkhorst 22 年之前
父节点
当前提交
dfddd88487
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      functions/html.php

+ 1 - 1
functions/html.php

@@ -72,7 +72,7 @@
         if ( $val <> '' ) {
             $ret .= ">$val</$tag>";
         } else {
-            $ret .= ' />';
+            $ret .= '>';
         } 
 
         return( $ret );