

Открываем glance.php
Ищем
Код: Выделить всё
unset($is_auth_read);
Код: Выделить всё
// Auth moderate check
$is_auth_mod = array();
$is_auth_mod = auth(AUTH_ADMIN, AUTH_LIST_ALL, $userdata);
$unauthed_mod = '0';
while ( list($forum_id, $auth_mode) = each($is_auth_mod) )
{
if ( !$auth_mode['auth_mod'] )
{
$unauthed_mod .= ',' . $forum_id;
}
}
unset($is_auth_mod);
Код: Выделить всё
else
{
$announcement_text = '';
}
Код: Выделить всё
////////////////////////////
if (strpos($unauthed_mod, '1'))
{
$anno_view = " ";
$anno_edit = " ";
}
else
{
$anno_view = "<a href=http://mizantrop.mine.nu/forum/viewtopic.php?p=1000#1000><img src=http://mizantrop.mine.nu/forum/templates/smartDark/images/icon_keep_unread.gif></a>";
$anno_edit = "<a href=http://mizantrop.mine.nu/forum/posting.php?mode=editpost&p=1000><img src=http://mizantrop.mine.nu/forum/templates/smartDark/images/lang_english/icon_edit.gif></a>";
}
///////////////////////////
Код: Выделить всё
'RECENT_TITLE' => $lang['Glance_recent']
Код: Выделить всё
,
'ANNO_VIEW' => $anno_view,
'ANNO_EDIT' => $anno_edit
Ищем
Код: Выделить всё
<tr>
<td class="row1" align="center" valign="center"><span class="gensmall">{ANNO_TEXT}</span>
</td>
</tr>
Код: Выделить всё
<tr>
<td>
{ANNO_VIEW} {ANNO_EDIT}
</td>
</tr>