Что отображать при показе пользователя, редактировавшего страницу последним. Используется в колонтитуле страниц и в последних изменениях.
Возможные значения:
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.