Merge branch '2.4' of https://github.com/MISP/MISP into rework_stix

pull/6022/head
chrisr3d 2020-04-06 15:44:42 +02:00
commit ef87f47161
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ class Stix2Export extends StixExport
$filename = $this->__scripts_dir . 'tmp/' . $filename;
$my_server = ClassRegistry::init('Server');
$result = shell_exec($my_server->getPythonVersion() . ' ' . $scriptFile . ' ' . $filename . $this->__end_of_cmd);
$result = end(preg_split("/\r\n|\n|\r/", trim($result)));
return $result;
$result = preg_split("/\r\n|\n|\r/", trim($result));
return end($result);
}
}