Browse Source

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 years ago
parent
commit
dfddd88487
1 changed files with 1 additions and 1 deletions
  1. 1 1
      functions/html.php

+ 1 - 1
functions/html.php

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