X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=backend.php;h=8aaf1001657c573c9dd3dabec24405674ccd2bdf;hb=19c7350770788edf3ae0bb1fd6d95876667adbf6;hp=511bb35528245b5b015aa44660372184e731f2e9;hpb=83e6e313be6de7d6e3f155a13c821ab82da12575;p=tt-rss.git diff --git a/backend.php b/backend.php index 511bb355..8aaf1001 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;