Делаем IPB Портал главной страницей

<b>Вот как это сделать в версиях 2.1.х:</b>


открыть файл - <u>index.php</u>

найти:
<!--c1--><div class='codetop'>Код</div><div class='codemain'><!--ec1-->//---------------------------------------------------
// Check to make sure the array key exits..
//---------------------------------------------------

$ipsclass->input['_low_act'] = strtolower( $ipsclass->input['act'] );

if (! isset($choice[ $ipsclass->input['_low_act'] ][0]) )
{
&nbsp; &nbsp;$ipsclass->input['act'] = 'idx';
&nbsp; &nbsp;$ipsclass->input['_low_act'] = 'idx';
}<!--c2--></div><!--ec2-->

Заменить на:
<!--c1--><div class='codetop'>Код</div><div class='codemain'><!--ec1-->//---------------------------------------------------
// Check to make sure the array key exits..
//---------------------------------------------------

$ipsclass->input['_low_act'] = strtolower( $ipsclass->input['act'] );

if (! isset($choice[ $ipsclass->input['_low_act'] ][0]) )
{
&nbsp; &nbsp;$ipsclass->input['act'] = 'home';
&nbsp; &nbsp;$ipsclass->input['_low_act'] = 'idx';
}<!--c2--></div><!--ec2-->
 
Как вставить в это меню чтобы перед форумом стояла ( Главная страница)>Форум>и т.д.
 
Сверху