Merge pull request #701 from markusg/master

Rspamd History fix small error
master
André Peters 2017-10-30 22:30:24 +01:00 committed by GitHub
commit f7e3626e67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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_URL,"http://rspamd-mailcow:11334/history");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$history = curl_exec($curl); $history = curl_exec($curl);
if (!curl_errno($ch)) { if (!curl_errno($curl)) {
$data_array = json_decode($history, true); $data_array = json_decode($history, true);
curl_close($curl); curl_close($curl);
return $data_array['rows']; return $data_array['rows'];