Explorar el Código

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 hace 22 años
padre
commit
dfddd88487
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 );