From cd99068dbe172c7a150206c67057ae10e4c83862 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Mon, 16 Mar 2009 00:34:46 +0000 Subject: [PATCH] Avoid "?>", messes up some syntax highlighters --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index f6a5601d3f..2474495c19 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1479,7 +1479,7 @@ class OutputPage { $ret = ''; if( $wgMimeType == 'text/xml' || $wgMimeType == 'application/xhtml+xml' || $wgMimeType == 'application/xml' ) { - $ret .= "\n"; + $ret .= "\n"; } $ret .= "\n"; -- 2.20.1