diff --git a/src/infrastructure/storage/lisk/LiskDAO.php b/src/infrastructure/storage/lisk/LiskDAO.php index 6faa3bb4f8..d21001c0a3 100644 --- a/src/infrastructure/storage/lisk/LiskDAO.php +++ b/src/infrastructure/storage/lisk/LiskDAO.php @@ -1637,7 +1637,7 @@ abstract class LiskDAO { break; case self::SERIALIZATION_JSON: if ($deserialize) { - $data[$col] = phutil_json_decode($data[$col]); + $data[$col] = json_decode($data[$col], true); } else { $data[$col] = json_encode($data[$col]); }