Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-08-01 00:33:11 +0400
committerBart Visscher <bartv@thisnet.nl>2012-08-01 00:33:11 +0400
commit9d6a09f58946c8d4e7903d5b25a5fb00f6bcb5e8 (patch)
tree90ad9abd2da165cdbd4e5be719450bba0e594ad0 /lib/router.php
parent28537037ae27a8e766d3c4ef129422dc02b45d5f (diff)
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 f76f64ac82b..c3864cfc91c 100644
--- a/lib/router.php
+++ b/lib/router.php
@@ -51,7 +51,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']);