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);
}
?>
Updated by Anonymous almost 9 years ago
- Status changed from New to Feedback
- Assignee set to Anonymous
Thanks Robbert. Code restored to 2.3
Updated by Anonymous almost 9 years ago
- % Done changed from 0 to 100
Applied in changeset 6543ffa4c5ef4782da43501948f1d054452c6a9a.
Updated by Chris Buechler almost 9 years ago
- Status changed from Feedback to Resolved
- Target version set to 2.3
fixed
Actions