Commit beaedab1 authored by clone's avatar clone

Merge branch 'test-v1.9' into test

parents 58e503ec 91df5942
......@@ -72,7 +72,12 @@ class Basic extends Controller
$this->params = $this->request->param() != null ? $this->request->param() : null;
}
$requestPath = $this->request->routeInfo()["rule"][0] . "/" . $this->request->routeInfo()["rule"][1];
// $requestPath = $this->request->routeInfo()["rule"][0] . "/" . $this->request->routeInfo()["rule"][1];
if (isset($this->request->routeInfo()["var"]["check_status"])) {
$requestPath = $this->request->routeInfo()["rule"][0] . "/" . $this->request->routeInfo()["rule"][1]. "/" . $this->request->routeInfo()["var"]["check_status"];
} else {
$requestPath = $this->request->routeInfo()["rule"][0] . "/" . $this->request->routeInfo()["rule"][1];
}
if (!in_array($requestPath, $this->filterVerify)) {
$this->userVerify();
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment