Authored by hf

modify to fixes bugs

... ... @@ -139,7 +139,7 @@ class TemplateLayout implements View_Interface
// 取得模板的最后修改时间戳
$lastModifyTime = filemtime($viewName);
// 使用MD5生成唯一的键名
$makeKey = md5($viewName . strval($lastModifyTime));
$makeKey = md5($viewName . strval($lastModifyTime));
// 模板编译成PHP文件所存放的目录
$compilePath = $config->template->compile;
// 模板编译成PHP文件所存放的文件路径
... ...
... ... @@ -4,7 +4,7 @@
<form id="search-form" action="{{url}}" method="get">
<i class="search-icon iconfont">&#xe60f;</i>
<input type="text" value="{{default}}" name="query">
<input type="hidden" value="search" name="search">
<input type="hidden" value="search" name="from">
<i class="clear-input iconfont hide">&#xe61a;</i>
<button id="search" class="search" type="submit">搜索</button>
</form>
... ...