From 1f897b5309c34d44f61115a9add226b6c8b00a95 Mon Sep 17 00:00:00 2001 From: guanxiying Date: Tue, 26 Nov 2019 17:17:00 +0800 Subject: [PATCH] * Fix missing ; . --- module/file/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/file/model.php b/module/file/model.php index 1ca2897dc3..b52ee05bb3 100644 --- a/module/file/model.php +++ b/module/file/model.php @@ -863,7 +863,7 @@ class fileModel extends model for($i = 0; $i < $obLevel; $i++) ob_end_clean(); /* Set the downloading cookie, thus the export form page can use it to judge whether to close the window or not. */ - setcookie('downloading', 1, 0, $this->config->webRoot, '', false, false) + setcookie('downloading', 1, 0, $this->config->webRoot, '', false, false); /* Append the extension name auto. */ $extension = '.' . $fileType;