From 3cfa05d42035ae6f6b38e87c3f5098548e739b6f Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 14 Feb 2014 13:40:10 +0000 Subject: [PATCH] Static controller parameter must match registered route --- library/Icinga/Application/Modules/Module.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Icinga/Application/Modules/Module.php b/library/Icinga/Application/Modules/Module.php index d785cf0b3..7464964c1 100644 --- a/library/Icinga/Application/Modules/Module.php +++ b/library/Icinga/Application/Modules/Module.php @@ -489,7 +489,7 @@ class Module array( 'controller' => 'static', 'action' =>'javascript', - 'moduleName' => $this->name + 'module_name' => $this->name ) ) ); @@ -500,7 +500,7 @@ class Module array( 'controller' => 'static', 'action' => 'img', - 'moduleName' => $this->name + 'module_name' => $this->name ) ) );