From 7adfc588789cbc2961533f92fa367edb9931b9d0 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 3 Sep 2015 15:04:39 +0200 Subject: [PATCH] NavigationItem: Add missing return keyword in method render() refs #5600 --- library/Icinga/Web/Navigation/NavigationItem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Web/Navigation/NavigationItem.php b/library/Icinga/Web/Navigation/NavigationItem.php index 23d86d41b..ef8b32bfa 100644 --- a/library/Icinga/Web/Navigation/NavigationItem.php +++ b/library/Icinga/Web/Navigation/NavigationItem.php @@ -667,7 +667,7 @@ class NavigationItem implements IteratorAggregate */ public function render() { - $this->getRenderer()->setItem($this)->render(); + return $this->getRenderer()->setItem($this)->render(); } /**