From 80e473d75411b2e9a6b393a4dc9b7a7315082ab3 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Fri, 28 Jan 2005 00:44:17 +0000 Subject: [PATCH] use switch() instead of if else if else if else if else if else :o) --- includes/ParserXML.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ParserXML.php b/includes/ParserXML.php index 760b4049b2..39984796b3 100644 --- a/includes/ParserXML.php +++ b/includes/ParserXML.php @@ -393,7 +393,7 @@ class element { break; # Something else entirely - case default: + default: $ret .= '<'.$n.'>'; $ret .= $this->sub_makeXHTML($parser); $ret .= '</'.$n.'> '; -- 2.20.1