mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-03-01 10:31:47 +00:00
Update handling of filePath argument
This commit is contained in:
@@ -3,9 +3,10 @@
|
||||
require '../../includes/csrf.php';
|
||||
require_once '../../includes/config.php';
|
||||
|
||||
$filePath = $_GET['filePath'];
|
||||
$tempDir = sys_get_temp_dir();
|
||||
$filePath = $tempDir . DIRECTORY_SEPARATOR . RASPI_DEBUG_LOG;
|
||||
|
||||
if (isset($filePath) && strpos($filePath, RASPI_DEBUG_LOG) !== false) {
|
||||
if (isset($filePath)) {
|
||||
header('Content-Type: application/octet-stream');
|
||||
header('Content-Disposition: attachment; filename='.basename($filePath));
|
||||
header('Expires: 0');
|
||||
|
Reference in New Issue
Block a user