Предлагаю мод, исправляющий это недоразумение:
- Код: Выделить всё
##############################################################
## MOD Title: Show Forums to the Admin
## MOD Author: Бродяга < walker[at]tuning.by > http://www.tuning.by
## MOD Description: This mod shows forums to the admin
## MOD Version: 1.0.0 [phpBB 2.0.x]
##
## Installation Level: Easy
## Installation Time: 5 Minutes
## Files To Edit (4): common.php
## includes/page_header.php
## language/lang_russian/lang_main.php
## templates/subSilver/overall_header.tpl
## Included Files:
##############################################################
## For Security Purposes, Please Check: http://www.phpbbguru.net/mods/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/
##############################################################
## Author Notes:
##
##############################################################
## MOD History:
##
## 2006-02-22 - Version 1.0.0
## - Initial Release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
common.php
#
#-----[ FIND ]------------------------------------------
#
if( $board_config['board_disable'] && !defined("IN_ADMIN") && !defined("IN_LOGIN"))
#
#-----[ REPLACE WITH ]---------------------------------------------
#
$userdata = session_pagestart($user_ip, PAGE_INDEX);
if( $board_config['board_disable'] && !defined("IN_ADMIN") && !defined("IN_LOGIN") && $userdata['user_level'] != ADMIN)
#
#-----[ OPEN ]------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]------------------------------------------
#
'L_LOGIN' => $lang['Login'],
#
#-----[ AFTER ADD ]------------------------------------------
#
'L_BOARDS_STILL_DISABLED' => (($board_config['board_disable'] && $userdata['user_level'] == ADMIN && $userdata['session_logged_in']) ? '<p><font color=red><b>'.$lang['Boards_still_disabled'].'</b></font></p>' : '' ),
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/overall_header.tpl
#
#-----[ FIND ]------------------------------------------
#
<a href="{U_PROFILE}" class="mainmenu">
#
#-----[ IN-LINE FIND ]------------------------------------------
#
</span>
#
#-----[ IN-LINE BEFORE, ADD ]------------------------------------------
#
{L_BOARDS_STILL_DISABLED}
#
#-----[ OPEN ]------------------------------------------
#
language/lang_russian/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
//
// That's all Folks!
// -------------------------------------------------
#
#-----[ BEFORE ADD ]------------------------------------------
#
$lang['Boards_still_disabled'] = 'Форумы все еще закрыты для юзеров!...';
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM







