From 93e301f751df26002b8c326fe716ed7e940278d5 Mon Sep 17 00:00:00 2001 From: Magnus Manske Date: Sun, 8 Aug 2004 14:03:27 +0000 Subject: [PATCH] This fixes bug 984629, but gives a double footer --- includes/SkinPHPTal.php | 2 ++ stylesheets/monobook/main.css | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/includes/SkinPHPTal.php b/includes/SkinPHPTal.php index 3206b5e700..35ff06dee4 100644 --- a/includes/SkinPHPTal.php +++ b/includes/SkinPHPTal.php @@ -204,6 +204,8 @@ if( defined( "MEDIAWIKI" ) ) { $tpl->set( "reporttime", $out->reportTime() ); $tpl->set( "sitenotice", $wgSiteNotice ); + $printfooter = "
\n" . $this->printFooter() . "
\n"; + $out->mBodytext .= $printfooter ; $tpl->setRef( "bodytext", $out->mBodytext ); $language_urls = array(); diff --git a/stylesheets/monobook/main.css b/stylesheets/monobook/main.css index 5b13d4740f..9408e63f8a 100644 --- a/stylesheets/monobook/main.css +++ b/stylesheets/monobook/main.css @@ -1,4 +1,4 @@ -/* +/* ** Mediawiki 'monobook' style sheet for CSS2-capable browsers. ** Copyright Gabriel Wicke - http://wikidev.net/ ** License: GPL (http://www.gnu.org/copyleft/gpl.html) @@ -902,3 +902,7 @@ fieldset.operaprefsection { margin-left: 15em } font-size:150%; margin:5px; } + +.printfooter { + display: none; +} \ No newline at end of file -- 2.20.1