Merge pull request #12272 from owncloud/drop-var_dump
drop unneeded var_dump - fixes #9997
This commit is contained in:
commit
45e770733e
|
@ -243,7 +243,6 @@ class Router implements IRouter {
|
||||||
if (isset($parameters['action'])) {
|
if (isset($parameters['action'])) {
|
||||||
$action = $parameters['action'];
|
$action = $parameters['action'];
|
||||||
if (!is_callable($action)) {
|
if (!is_callable($action)) {
|
||||||
var_dump($action);
|
|
||||||
throw new \Exception('not a callable action');
|
throw new \Exception('not a callable action');
|
||||||
}
|
}
|
||||||
unset($parameters['action']);
|
unset($parameters['action']);
|
||||||
|
|
Loading…
Reference in New Issue