summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/backend.php b/backend.php
index 511bb3552..8aaf10016 100644
--- a/backend.php
+++ b/backend.php
@@ -126,6 +126,10 @@
if ($handler->before($method)) {
if ($method && method_exists($handler, $method)) {
$handler->$method();
+ } else {
+ if (method_exists($handler, "catchall")) {
+ $handler->catchall($method);
+ }
}
$handler->after();
return;