diff --git a/library/Icinga/Application/Modules/NavigationItemContainer.php b/library/Icinga/Application/Modules/NavigationItemContainer.php index b59d52f60..700e526c0 100644 --- a/library/Icinga/Application/Modules/NavigationItemContainer.php +++ b/library/Icinga/Application/Modules/NavigationItemContainer.php @@ -95,7 +95,7 @@ abstract class NavigationItemContainer public function __call($name, $arguments) { if (method_exists($this, $name)) { - return call_user_method_array($name, $this, $arguments); + return call_user_func(array($this, $name), $this, $arguments); } $type = substr($name, 0, 3);