This commit is contained in:
Jean-Christian Denis 2023-04-06 23:32:34 +02:00
parent 7bc5d8989f
commit cec53147c0
Signed by: JcDenis
GPG key ID: 1B5B8C5B90B6C951
2 changed files with 3 additions and 3 deletions

View file

@ -108,9 +108,9 @@ class Core
if ($rs->isEmpty()) {
return [];
}
dcCore::app()->log->delLogs($rs->__get('log_id'));
dcCore::app()->log->delLogs($rs->f('log_id'));
$res = json_decode($rs->__get('log_msg'), true);
$res = json_decode($rs->f('log_msg'), true);
return is_array($res) ? $res : [];
}