From: Brion Vibber Date: Sun, 17 Aug 2003 04:34:07 +0000 (+0000) Subject: Fix for copyright notice in printable mode X-Git-Tag: 1.1.0~330 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=b6d9be3ba6bbb6208b41e723a7ee88e4f614f848;p=lhc%2Fweb%2Fwiklou.git Fix for copyright notice in printable mode --- 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();