|
今天给一个客户做一个搜索功能,要求搜索没有结果时,显示固定的格式信息,但是织梦默认是空白的,没有任何提示信息,现在贴上修改方法:
修改include/arc.searchview.class.php
查找$this->dsql->FreeResult("al");
在下面添加:
if($artlist=='')
{
$artlist='[tr][td]很遗憾,您查询的保函编号 [/td][td]';
$artlist .= $this->Keyword;
$artlist .= '[/td][td] 未能通过验证!请确认是否输入正确。返回上一步[/td][/tr]';
} |
|