Commit dfbfe47
authored
Fix backup download link — missing file= query parameter (#970)
The download link was generated as /admin/backups/?filename.zip
but the download handler checks $_GET['file'], so the handler
was never triggered. The browser navigated to the page instead
of downloading the file, causing a JS error.
Changed: url('admin/backups') . '/?' . $entry
To: url('admin/backups') . '?file=' . $entry1 parent a36c1dd commit dfbfe47
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
113 | 113 | | |
114 | 114 | | |
115 | 115 | | |
116 | | - | |
| 116 | + | |
117 | 117 | | |
118 | 118 | | |
119 | 119 | | |
| |||
0 commit comments