diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php index 3da238f5d..42457670b 100644 --- a/inc/html.php +++ b/inc/html.php @@ -305,7 +305,7 @@ function html_hilight($html,$query){ function html_hilight_callback($m) { $hlight = unslash($m[0]); if ( !isset($m[2])) { - $hlight = '<strong class="search_hit">'.$hlight.'</strong>'; + $hlight = '<span class="search_hit">'.$hlight.'</span>'; } return $hlight; } |