Actions
Bug #5555
closedstatus.php does not create status_output.tgz
Start date:
11/30/2015
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
2.3
Affected Architecture:
Description
The status.php page no longer automatically creates the /tmp/status_output.tgz file once it's done creating all the files for the /tmp/status_output directory.
Looks like this part of the code in 2.2.5 didn't make it to 2.3 when it was converted.
=gettext("Saving output to archive...");?>
if (is_dir($output_path)) {
mwexec("/usr/bin/tar czpf " . escapeshellarg($output_file) . " -C " . escapeshellarg(dirname($output_path)) . " " . escapeshellarg(basename($output_path)));
unlink_if_exists("{$output_path}/*");
@rmdir($output_path);
}
?>
Actions