From b6d9be3ba6bbb6208b41e723a7ee88e4f614f848 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 17 Aug 2003 04:34:07 +0000 Subject: [PATCH] Fix for copyright notice in printable mode --- includes/Skin.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/Skin.php b/includes/Skin.php index b9a6aa83c9..05e38ccccd 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -289,7 +289,8 @@ class Skin { $lm = "
" . $this->lastModified(); } else { $lm = ""; } - $s .= "

{$rf}{$lm}\n"; + $cr = wfMsg( "gnunote" ); + $s .= "

{$rf}{$lm} {$cr}\n"; return $s; } return $this->doAfterContent(); -- 2.20.1