|
|
@@ -93,7 +93,7 @@ class Router
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- if (!is_callable([$this->controllerClass, $this->controllerMethod]))
|
|
|
+ if (!is_callable([$this->controllerClass, $this->controllerMethod], true))
|
|
|
{
|
|
|
|
|
|
logModuleCall(
|
|
|
@@ -104,7 +104,7 @@ class Router
|
|
|
$this->controllerMethod
|
|
|
);
|
|
|
|
|
|
- return true;
|
|
|
+ return false;
|
|
|
}
|
|
|
|
|
|
return true;
|