Skip to content

Commit

Permalink
Merge branch 'master' of ssh://github.com/LiveHelperChat/livehelperchat
Browse files Browse the repository at this point in the history
  • Loading branch information
remdex committed Feb 10, 2017
2 parents 16e9950 + 60b46a8 commit 7c91366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lhc_web/lib/core/lhchat/lhchat.php
Original file line number Diff line number Diff line change
Expand Up @@ -1695,7 +1695,7 @@ public static function safe_json_encode($value) {
return 'Syntax error, malformed JSON'; // or trigger_error() or throw new Exception()
case JSON_ERROR_UTF8:
$clean = self::utf8ize($value);
return safe_json_encode($clean);
return self::safe_json_encode($clean);
default:
return 'Unknown error'; // or trigger_error() or throw new Exception()

Expand Down

0 comments on commit 7c91366

Please sign in to comment.