routing: check if created handler is a subclass of Handler

master
Andrew Dolgov 12 years ago
parent 501ed09a26
commit 143d1b31a8

@ -136,7 +136,7 @@
if (class_exists($op)) {
$handler = new $op($link, $_REQUEST);
if ($handler) {
if ($handler && is_subclass_of($handler, 'Handler')) {
if (validate_csrf($csrf_token) || $handler->csrf_ignore($method)) {
if ($handler->before($method)) {
if ($method && method_exists($handler, $method)) {

Loading…
Cancel
Save