Skip to content

Commit

Permalink
fix special chars breaking arti hint
Browse files Browse the repository at this point in the history
  • Loading branch information
bls1999 committed Mar 3, 2020
1 parent 1b2df92 commit 7dc3137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/cron/cron_fns.php
Expand Up @@ -195,7 +195,7 @@ function update_artifact($pdo)

// tell it to the world
$r = new stdClass();
$r->hint = join('', $arr);
$r->hint = join('', array_map('utf8_encode', $arr));
$r->finder_name = $finder_name;
$r->bubbles_name = $bubbles_name;
$r->updated_time = $updated_time;
Expand Down

0 comments on commit 7dc3137

Please sign in to comment.