diff options
Diffstat (limited to 'inc/html.php')
-rw-r--r-- | inc/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php index d5a7a232e..dc11b17d7 100644 --- a/inc/html.php +++ b/inc/html.php @@ -481,7 +481,7 @@ function html_revisions($first=0){ print ' – '; print $INFO['sum']; print ' <span class="user">'; - print $INFO['editor']; + print (empty($INFO['editor']))?('('.$lang['external_edit'].')'):$INFO['editor']; print '</span> '; print '('.$lang['current'].')'; |