summaryrefslogtreecommitdiff
path: root/inc/html.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/html.php')
-rw-r--r--inc/html.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/html.php b/inc/html.php
index 24b811d29..e7525ae2d 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -438,7 +438,7 @@ function html_revisions($first=0){
print ' – ';
print htmlspecialchars($INFO['sum']);
print ' <span class="user">';
- print (empty($INFO['editor']))?('('.$lang['external_edit'].')'):htmlspecialchars($INFO['editor']);
+ print (empty($INFO['editor']))?('('.$lang['external_edit'].')'):editorinfo($INFO['editor']);
print '</span> ';
print '('.$lang['current'].')';
@@ -482,7 +482,7 @@ function html_revisions($first=0){
print htmlspecialchars($info['sum']);
print ' <span class="user">';
if($info['user']){
- print htmlspecialchars($info['user']);
+ print editorinfo($info['user']);
}else{
print $info['ip'];
}
@@ -576,7 +576,7 @@ function html_recent($first=0){
print ' <span class="user">';
if($recent['user']){
- print htmlspecialchars($recent['user']);
+ print editorinfo($recent['user']);
}else{
print $recent['ip'];
}