Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <?php
- /**
- * 搜索结果
- *
- * @version $id:action_search.php 8:26 2010年7月12日 tianya $
- * @package DedeBIZ.Administrator
- * @copyright Copyright (c) 2022 DedeBIZ.COM
- * @license GNU GPL v2 (https://www.dedebiz.com/license)
- * @link https://www.dedebiz.com
- */
- require_once(dirname(__FILE__)."/config.php");
- require_once(dirname(__FILE__)."/actionsearch_class.php");
- //添加权限检查
- if (empty($dopost)) $dopost = "";
- $keyword = empty($keyword) ? "" : RemoveXss($keyword);
- $actsearch = new ActionSearch($keyword);
- $asresult = $actsearch->Search();
- include DedeInclude('templets/action_search.htm');
- ?>
|