소스 검색

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 );