Dont anonymize bug report diagnostics sent to Limetech

This commit is contained in:
Eric Schultz
2016-02-25 10:26:44 -08:00
parent 22a9dfe9dc
commit b78eff05eb

View File

@@ -16,7 +16,7 @@ $keyfile = trim(base64_encode(@file_get_contents($var['regFILE'])));
if (array_key_exists('getdiagnostics', $_GET)) {
$diag_file = '/tmp/feedback_diagnostics_'.time().'.zip';
exec("/usr/local/emhttp/plugins/dynamix/scripts/diagnostics $diag_file");
exec("/usr/local/emhttp/plugins/dynamix/scripts/diagnostics -a $diag_file");
echo base64_encode(@file_get_contents($diag_file));
@unlink($diag_file);
exit;