<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]) )
{
$ipsclass->input['act'] = 'idx';
$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]) )
{
$ipsclass->input['act'] = 'home';
$ipsclass->input['_low_act'] = 'idx';
}<!--c2--></div><!--ec2-->