summaryrefslogtreecommitdiff
path: root/includes/Credits.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/Credits.php')
-rw-r--r--includes/Credits.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/Credits.php b/includes/Credits.php
index ff33de74..62f0b256 100644
--- a/includes/Credits.php
+++ b/includes/Credits.php
@@ -87,11 +87,13 @@ function getAuthorCredits($article) {
$timestamp = $article->getTimestamp();
if ($timestamp) {
- $d = $wgLang->timeanddate($article->getTimestamp(), true);
+ $d = $wgLang->date($article->getTimestamp(), true);
+ $t = $wgLang->time($article->getTimestamp(), true);
} else {
$d = '';
+ $t = '';
}
- return wfMsg('lastmodifiedby', $d, $author_credit);
+ return wfMsg('lastmodifiedatby', $d, $t, $author_credit);
}
/**