From 1861581f072a822207d9ba3a726e73a1767874b6 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sun, 16 Mar 2008 21:24:52 +0000 Subject: [PATCH] Might as well show username here if allowed --- includes/Article.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/includes/Article.php b/includes/Article.php index 15d2a3db98..805a5cdaab 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -2728,8 +2728,9 @@ class Article { } $cdel = "($cdel) "; } - - $userlinks = $sk->revUserTools( $revision, true ); + # Show user links if allowed to see them. Normally they + # are hidden regardless, but since we can already see the text here... + $userlinks = $sk->revUserTools( $revision, false ); $m = wfMsg( 'revision-info-current' ); $infomsg = $current && !wfEmptyMsg( 'revision-info-current', $m ) && $m != '-' -- 2.20.1