summaryrefslogtreecommitdiffstats
path: root/lib/router.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-07-31 22:33:11 +0200
committerBart Visscher <bartv@thisnet.nl>2012-08-10 23:27:58 +0200
commitca1454ab1a9a20f51544d8822b4c16ef00c35264 (patch)
tree255ad77febc1f124478647f5478ab7752f308dd8 /lib/router.php
parent3e8b6e816a3f89ac20f22fdde630946058e5d184 (diff)
downloadnextcloud-server-ca1454ab1a9a20f51544d8822b4c16ef00c35264.tar.gz
nextcloud-server-ca1454ab1a9a20f51544d8822b4c16ef00c35264.zip
Routing: Method needs to be uppercase
Diffstat (limited to 'lib/router.php')
-rw-r--r--lib/router.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/router.php b/lib/router.php
index 4b6b076e21b..5dd51e79156 100644
--- a/lib/router.php
+++ b/lib/router.php
@@ -49,7 +49,7 @@ class OC_Router {
if (isset($parameters['action'])) {
$action = $parameters['action'];
if (!is_callable($action)) {
- var_dump($action);
+ var_dump($action);
throw new Exception('not a callable action');
}
unset($parameters['action']);