Update string.utils.php

This commit is contained in:
Namhyeon Go 2019-05-03 14:43:26 +09:00 committed by GitHub
parent 3819217e72
commit 04b9f61451
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -173,7 +173,11 @@ if(!check_function_exists("parse_pipelined_data")) {
if(!check_function_exists("get_highlighted_html_by_word")) {
function get_highlighted_html_by_word($word, $text) {
return preg_replace("/\w*?$word\w*/i", "<strong class=\"highlight\">$0</strong>", $text);
$html = $text;
if(strlen($word) > 0) {
$html = preg_replace("/\w*?$word\w*/i", "<strong class=\"highlight\">$0</strong>", $text);
}
return $html;
}
}