From 8f2aa2bcbfe7654977d4bb6784c0d99b915af188 Mon Sep 17 00:00:00 2001 From: Cameron Date: Wed, 15 Jan 2014 07:02:45 -0800 Subject: [PATCH] Fix for icon display issue in the icon-picker. --- e107_handlers/form_handler.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/e107_handlers/form_handler.php b/e107_handlers/form_handler.php index a32bf5566..47d2f18c5 100644 --- a/e107_handlers/form_handler.php +++ b/e107_handlers/form_handler.php @@ -538,14 +538,7 @@ class e_form $thpath = isset($sc_parameters['nothumb']) || vartrue($hide) ? $default : $default_thumb; $label = "
"; - if($glyph = $tp->toGlyph($default_url)) - { - $label .= $glyph; - } - else - { - $label .= $tp->toIcon($default_url); - } + $label .= $tp->toIcon($default_url); $label .= "
";