possible fix for invalid byte sequence error when processing tags
This commit is contained in:
parent
1f43d4194d
commit
235a11b026
1 changed files with 1 additions and 1 deletions
|
@ -775,7 +775,7 @@
|
|||
$entry_int_id = db_fetch_result($result, 0, "int_id");
|
||||
|
||||
foreach ($entry_tags as $tag) {
|
||||
$tag = db_escape_string(strtolower($tag));
|
||||
$tag = db_escape_string(mb_strtolower($tag));
|
||||
|
||||
$tag = str_replace("+", " ", $tag);
|
||||
$tag = str_replace("technorati tag: ", "", $tag);
|
||||
|
|
Loading…
Reference in a new issue