From 0c59a5f8247424295e3f40df0b96ecaaefa24b03 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Thu, 6 Jan 2011 15:27:49 +0000 Subject: [PATCH] Followup r79709, re-add equals Removed due to previous CR, that had not had any response to, so presumed right --- includes/parser/Preprocessor_DOM.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/parser/Preprocessor_DOM.php b/includes/parser/Preprocessor_DOM.php index f8e549d75a..94a75cc752 100644 --- a/includes/parser/Preprocessor_DOM.php +++ b/includes/parser/Preprocessor_DOM.php @@ -44,7 +44,7 @@ class Preprocessor_DOM implements Preprocessor { if ( is_int( $k ) ) { $xml .= "" . htmlspecialchars( $val ) .""; } else { - $xml .= "" . htmlspecialchars( $k ) . "" . htmlspecialchars( $val ) . ""; + $xml .= "" . htmlspecialchars( $k ) . "=" . htmlspecialchars( $val ) . ""; } } -- 2.20.1