From 871f6d1153ee9cf5499f731aff3dc51891e43d84 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 11 Feb 2005 06:37:22 +0000 Subject: [PATCH] HTML compatibility: use space before the / on
and
, some old browsers don't understand without. --- includes/Skin.php | 2 +- includes/SpecialUpload.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Skin.php b/includes/Skin.php index b6b7a4ddf1..276cddb2de 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -406,7 +406,7 @@ class Skin extends Linker { # optional 'dmoz-like' category browser. Will be shown under the list # of categories an article belong to if($wgUseCategoryBrowser) { - $s .= '

'; + $s .= '

'; # get a big array of the parents tree $parenttree = $wgTitle->getParentCategoryTree(); diff --git a/includes/SpecialUpload.php b/includes/SpecialUpload.php index 1ac4a48f5d..23cd7a7944 100644 --- a/includes/SpecialUpload.php +++ b/includes/SpecialUpload.php @@ -431,7 +431,7 @@ class UploadForm { $sub = wfMsg( 'uploadwarning' ); $wgOut->addHTML( "

{$sub}

\n" ); - $wgOut->addHTML( "
\n" ); + $wgOut->addHTML( "
\n" ); $save = wfMsg( 'savefile' ); $reupload = wfMsg( 'reupload' ); -- 2.20.1