From 8b32edd6e9339a21cf1d1ff6f86f1f8a11e675ad Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Mon, 17 Aug 2015 13:29:47 +0200 Subject: [PATCH] Default to Zend's dispatcher if the controller name is empty refs #5786 --- library/Icinga/Web/Controller/Dispatcher.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/library/Icinga/Web/Controller/Dispatcher.php b/library/Icinga/Web/Controller/Dispatcher.php index 923f3072a..853e1c3e0 100644 --- a/library/Icinga/Web/Controller/Dispatcher.php +++ b/library/Icinga/Web/Controller/Dispatcher.php @@ -11,18 +11,23 @@ use Zend_Controller_Response_Abstract; /** * Dispatcher supporting Zend-style and namespaced controllers + * + * Does not support a namespaced default controller in combination w/ the Zend parameter useDefaultControllerAlways. */ class Dispatcher extends Zend_Controller_Dispatcher_Standard { /** - * {@inheritdoc} + * Dispatch request to a controller and action + * + * @param Zend_Controller_Request_Abstract $request + * @param Zend_Controller_Response_Abstract $resposne */ public function dispatch(Zend_Controller_Request_Abstract $request, Zend_Controller_Response_Abstract $response) { $this->setResponse($response); $controllerName = $request->getControllerName(); if (! $controllerName) { - throw new LogicException('Controller name not found'); + return parent::dispatch($request, $response); } $controllerName = ucfirst($controllerName) . 'Controller'; if ($this->_defaultModule === $this->_curModule) {