<?php
|
|
/**
|
|
* ============================================================================
|
* *
|
|
* ----------------------------------------------------------------------------
|
|
* ============================================================================
|
*/
|
|
define('IN_ECS', true);
|
|
require(dirname(__FILE__) . '/includes/init.php');
|
|
if ((DEBUG_MODE & 2) != 2)
|
{
|
$smarty->caching = true;
|
}
|
|
$templates = empty($topic['template']) ? 'searchindex.dwt' : $topic['template'];
|
|
$cache_id = sprintf('%X', crc32($_SESSION['user_rank'] . '-' . $_CFG['lang'] . '-' . $topic_id));
|
|
if (!$smarty->is_cached($templates, $cache_id))
|
{
|
|
|
/* 模板赋值 */
|
assign_template();
|
$position = assign_ur_here();
|
$smarty->assign('page_title', $position['title']); // 页面标题
|
$smarty->assign('show_marketprice', $_CFG['show_marketprice']);
|
|
}
|
/* 显示模板 */
|
$smarty->display($templates, $cache_id);
|
|
?>
|