We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44bab4c commit f098fb5Copy full SHA for f098fb5
composer.json
@@ -3,7 +3,7 @@
3
"description": "addons package for fastadmin",
4
"homepage": "https://github.com/karsonzhang/fastadmin-addons",
5
"license": "Apache-2.0",
6
- "version": "1.2.8",
+ "version": "1.2.9",
7
"authors": [
8
{
9
"name": "Karson",
src/addons/Controller.php
@@ -97,6 +97,11 @@ public function __construct(Request $request = null)
97
98
protected function _initialize()
99
100
+ // 检测IP是否允许
101
+ if (function_exists("check_ip_allowed")) {
102
+ check_ip_allowed();
103
+ }
104
+
105
// 渲染配置到视图中
106
$config = get_addon_config($this->addon);
107
$this->view->assign("config", $config);
0 commit comments