From: Sam Reed Date: Thu, 6 Jan 2011 15:27:49 +0000 (+0000) Subject: Followup r79709, re-add equals X-Git-Tag: 1.31.0-rc.0~32765 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=0c59a5f8247424295e3f40df0b96ecaaefa24b03;p=lhc%2Fweb%2Fwiklou.git Followup r79709, re-add equals Removed due to previous CR, that had not had any response to, so presumed right --- 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 ) . ""; } }