From 1eebcf25072674e039edd33904c6f700441a7722 Mon Sep 17 00:00:00 2001 From: kink Date: Sat, 4 Jan 2003 18:00:19 +0000 Subject: [PATCH] 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. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4382 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/html.php b/functions/html.php index 9ee1cd71..3a6c4142 100644 --- a/functions/html.php +++ b/functions/html.php @@ -72,7 +72,7 @@ if ( $val <> '' ) { $ret .= ">$val"; } else { - $ret .= ' />'; + $ret .= '>'; } return( $ret ); -- 2.25.1