Undo this xhtml-compatibility thing because the html_tag function is used
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 4 Jan 2003 18:00:19 +0000 (18:00 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 4 Jan 2003 18:00:19 +0000 (18:00 +0000)
incorrectly in many places around the code: no value is specified while
tags do have a value.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4382 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/html.php

index 9ee1cd71b6852c4bf878b43e8e98d7a236425a9b..3a6c4142e06f133885a064c6868adceab922e867 100644 (file)
@@ -72,7 +72,7 @@
         if ( $val <> '' ) {
             $ret .= ">$val</$tag>";
         } else {
-            $ret .= ' />';
+            $ret .= '>';
         } 
 
         return( $ret );