What to display when showing the user that last edited a page. Used in page footer and recent changes pages.
loginname
Please note that other settings than default may give performance penalties in combination with authentication backends like ad.
In wiki/inc/template.php, search for function tpl_pageinfo($ret=false){ . Under that look for the following code.
if($INFO['editor']){ $out .= ' '.$lang['by'].' '; $out .= editorinfo($INFO['editor']); }else{ $out .= ' ('.$lang['external_edit'].')'; }
Delete or comment it out by adding the PHP comment code /* */ shown below
/* if($INFO['editor']){
$out .= ' '.$lang['by'].' ';
$out .= editorinfo($INFO['editor']);
}else{
$out .= ' ('.$lang['external_edit'].')';
} */
If successful, the name or IP address of the poster will not show at the bottom of the page.