$ -> Affected files
18-May-2009 Joe Hunt
+# html header shown in backup downloads.
+$ /admin/backups.php
! Reinserted the link to GL in Work Order Inquiry.
$ /manufacturing/search_work_orders.php
# Added non closed work order requirements on On Order in Inventory Items Status
include_once($path_to_root . "/includes/ui.inc");
include_once($path_to_root . "/admin/db/maintenance_db.inc");
+if (get_post('view')) {
+ $filename = BACKUP_PATH . get_post('cmb_backups');
+ if (in_ajax())
+ $Ajax->popup( $filename );
+ else {
+ header('Content-type: application/octet-stream');
+ header('Content-Length: '.filesize($filename));
+ header("Content-Disposition: inline; filename=$filename");
+ readfile($filename);
+ exit();
+ }
+};
+
+if (get_post('download')) {
+ download_file(BACKUP_PATH . get_post('cmb_backups'));
+ exit;
+}
+
page(_("Backup and Restore Database"), false, false, '', '');
check_paths();
display_notification(_("Restore backup completed."));
}
-if (get_post('view')) {
- $filename = BACKUP_PATH . get_post('cmb_backups');
- if (in_ajax())
- $Ajax->popup( $filename );
- else {
- header('Content-type: application/octet-stream');
- header('Content-Length: '.filesize($filename));
- header("Content-Disposition: inline; filename=$filename");
- readfile($filename);
- exit();
- }
-};
-
-if (get_post('download')) {
- download_file(BACKUP_PATH . get_post('cmb_backups'));
- exit;
-}
-
if (get_post('delete')) {
if (unlink(BACKUP_PATH . get_post('cmb_backups'))) {
display_notification(_("File successfully deleted.")." "