13zone
Профессор
- Регистрация
- 22 Ноя 2008
- Сообщения
- 203
- Реакции
- 45
PHP:
//set defualt main_content template to homepage
$smarty->assign("main_content_template", "home.tpl.html");
if (!isset($_GET["novinki"]))
$smarty->assign("main_content_template", "home.tpl.html");
else
$smarty->assign("main_content_template", "novinki.tpl.html");
в таком варианте у меня ВСЕ работает (ничего лишнего)
попробуй так
PHP:
$smarty->assign("main_content_template", "home.tpl.html");
if (!isset($_GET["novinki"]))
$smarty->assign("main_content_template", "home.tpl.html");
else
$smarty->assign("main_content_template", "novinki.tpl.html");
if (!isset($_GET["article"]))
$smarty->assign("main_content_template", "article.html");