diff --git a/template.php b/template.php index 2b51ac7..ce22169 100755 --- a/template.php +++ b/template.php @@ -261,20 +261,20 @@ function bootstrap_process_block(&$variables, $hook) { * @ingroup themable */ function bootstrap_bootstrap_search_form_wrapper(&$variables) { - if (!module_exists('icon')) { - return $variables['element']['#children']; + $output = '
'; + $output .= $variables['element']['#children']; + $output .= ''; + $output .= ''; - $output .= ''; - $output .= '
'; - return $output; + $output .= t('Search'); } + $output .= ''; + $output .= ''; + $output .= ''; + return $output; } /**