mirror of https://gitee.com/karson/fastadmin.git
Compare commits
No commits in common. "dd63aa594805a3363a2d5f0c66948c9b62f9f9b9" and "a64cf1173f9834e2824ee4f6682047d485c3d9ec" have entirely different histories.
dd63aa5948
...
a64cf1173f
|
|
@ -320,7 +320,8 @@ class Addon extends Backend
|
|||
$offset = (int)$this->request->get("offset");
|
||||
$limit = (int)$this->request->get("limit");
|
||||
$filter = $this->request->get("filter", '');
|
||||
$search = $this->request->get("search", '', 'strip_tags,htmlspecialchars');
|
||||
$search = $this->request->get("search", '');
|
||||
$search = htmlspecialchars(strip_tags($search));
|
||||
$onlineaddons = $this->getAddonList();
|
||||
$filter = (array)json_decode($filter, true);
|
||||
$addons = get_addon_list();
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ if (!function_exists('__')) {
|
|||
/**
|
||||
* 获取语言变量值
|
||||
* @param string $name 语言变量名
|
||||
* @param string | array $vars 动态变量值
|
||||
* @param array $vars 动态变量值
|
||||
* @param string $lang 语言
|
||||
* @return mixed
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue