1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-02-21 19:48:32 +02:00

Rspamd History fix small error

This commit is contained in:
markusg 2017-10-30 22:15:11 +01:00
parent be752828d1
commit d107dcd7d1

View File

@ -930,7 +930,7 @@ function get_logs($container, $lines = 100) {
curl_setopt($curl, CURLOPT_URL,"http://rspamd-mailcow:11334/history");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$history = curl_exec($curl);
if (!curl_errno($ch)) {
if (!curl_errno($curl)) {
$data_array = json_decode($history, true);
curl_close($curl);
return $data_array['rows'];