Explorar o 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 %!s(int64=22) %!d(string=hai) anos
pai
achega
dfddd88487
Modificáronse 1 ficheiros con 1 adicións e 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 );