From 0bbace38aee0ae36b5ef866a4bb684f5d233e98b Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Tue, 24 Feb 2015 16:05:00 +0300 Subject: [PATCH] Fixes #7417: Used return in Tabs widgets instead of echo --- Tabs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tabs.php b/Tabs.php index 78ac278..0f8d6c9 100644 --- a/Tabs.php +++ b/Tabs.php @@ -123,8 +123,8 @@ class Tabs extends Widget */ public function run() { - echo $this->renderItems(); $this->registerPlugin('tab'); + return $this->renderItems(); } /**