From d40bdfb35ea713c62f2306ad930777a7d60c2af1 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 18 Nov 2014 22:36:42 +0100 Subject: [PATCH] drop unneeded var_dump - fixes #9997 --- lib/private/route/router.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index 645d6141964..5d6f621dc38 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -243,7 +243,6 @@ class Router implements IRouter { if (isset($parameters['action'])) { $action = $parameters['action']; if (!is_callable($action)) { - var_dump($action); throw new \Exception('not a callable action'); } unset($parameters['action']); -- 2.39.5