вопрос
Привет всем! Помогите пожалуйста! Скачал модуль новые пользователи! Хочу что бы он открывался в userinfo.
Как бы в userinfo я вставляю код {lastusers}
Сам модуль состоит из одного файла в папке modules/lastusers.php
Вот мой код в index,php
Как бы в userinfo я вставляю код {lastusers}
Сам модуль состоит из одного файла в папке modules/lastusers.php
Вот мой код в index,php
if($do=="servers"){
$tpl->load_template('serversmain.tpl');
}else if($do=="forum"){
$tpl->load_template('forum.tpl');
}else if($subaction=="userinfo"){
$tpl->load_template('usermain.tpl');
}else{
$tpl->load_template('main.tpl');
}
[b]$tpl->set ( '{lastusers}', $lastusers);[/b] <<<<<<<<<<<<Вот как мне вставить его что бы он грузился не от main.tpl а от usermain.tpl
$tpl->set ( '{calendar}', $tpl->result['calendar'] );
$tpl->set ( '{archives}', $tpl->result['archive'] );
$tpl->set ( '{tags}', $tpl->result['tags_cloud'] );
$tpl->set ( '{vote}', $tpl->result['vote'] );
$tpl->set ( '{topnews}', $tpl->result['topnews'] );
$tpl->set ( '{login}', $tpl->result['login_panel'] );
$tpl->set ( '{info}', $tpl->result['info'] );
$tpl->set ( '{speedbar}', $tpl->result['speedbar'] );
}