From 58518868773dc5c393ada2ab86e342c8948fc210 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Wed, 12 Nov 2014 11:30:06 +0100 Subject: [PATCH] Widget\Tab: no underlined space after icon --- library/Icinga/Web/Widget/Tab.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Web/Widget/Tab.php b/library/Icinga/Web/Widget/Tab.php index 92a1a9954..28c04e6ab 100644 --- a/library/Icinga/Web/Widget/Tab.php +++ b/library/Icinga/Web/Widget/Tab.php @@ -201,7 +201,7 @@ class Tab extends AbstractWidget $caption = $view->escape($this->title); if ($this->icon !== null) { - $caption = $view->img($this->icon, array('class' => 'icon')) . ' ' . $caption; + $caption = $view->img($this->icon, array('class' => 'icon')) . $caption; } if ($this->url !== null) { $this->url->overwriteParams($this->urlParams);