{if $con.cat_title} <span class="bd_item_cat"><a href="/board/{$con.category_id}">{$con.cat_title}</a></span> {/if}
Что там проверить конкретно надо? Нашел два куска кода которые относятся к файлу com_board_items.tpl:
// Отдаем в шаблон объявления $smarty = $inCore->initSmarty('components', 'com_board_items.tpl'); // Если необходимо, отдаем в шаблон html формы сортировки if ($category['orderform']){ $smarty->assign('order_form', $model->orderForm($orderby, $orderto, $category)); } $pagebar = ($category['id'] != $model->root_cat['id']) ? cmsPage::getPagebar($total, $model->page, $category['perpage'], '/board/%catid%-%page%', array('catid'=>$category['id'])) : false; $smarty->assign('cfg', $model->config); $smarty->assign('root_id', $model->root_cat['id']); $smarty->assign('items', $items); $smarty->assign('cat', $category); $smarty->assign('maxcols', $category['maxcols']); $smarty->assign('pagebar', $pagebar); $smarty->display('com_board_items.tpl');
$smarty = $inCore->initSmarty('components', 'com_board_items.tpl'); $smarty->assign('cfg', $model->config); $smarty->assign('page_title', $_LANG['BOARD'].' - '.$user['nickname']); $smarty->assign('root_id', $model->root_cat['id']); $smarty->assign('items', $items); $smarty->assign('cat', $category); $smarty->assign('maxcols', 1); $smarty->assign('colwidth', 100); $smarty->assign('pagebar', $pagebar); $smarty->display('com_board_items.tpl');