diff options
author | Ben Coburn <btcoburn@silicodon.net> | 2006-12-07 04:28:25 +0100 |
---|---|---|
committer | Ben Coburn <btcoburn@silicodon.net> | 2006-12-07 04:28:25 +0100 |
commit | 5aa52fafe8be8e728c0d2c9ff12c999e80766127 (patch) | |
tree | 7a7de279d3cc45d91154bbcf01701bbc1c933706 /inc/html.php | |
parent | cd00a03445c6b5dcdaba4631150c3c7e1370f526 (diff) | |
download | rpg-5aa52fafe8be8e728c0d2c9ff12c999e80766127.tar.gz rpg-5aa52fafe8be8e728c0d2c9ff12c999e80766127.tar.bz2 |
identify external edits in UI
Some changes to clearly identify when wiki pages have been edited outside
Dokuwiki. Also correctly attributes external changes from an unknown
author. Avoids sending extra emails when recording old external edits.
Adds a new language string:
$lang['external_edit']
darcs-hash:20061207032825-05dcb-3234bee57cb165c848b33abb9251502589b0f3cb.gz
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'].')'; |