whitespace_after_comma_in_array

This commit is contained in:
Nguyen Tran Chung 2022-12-02 12:48:40 +09:00
parent b8c68e06f6
commit ef987d4c84
No known key found for this signature in database
GPG key ID: 1E47DA8A9B29876B

View file

@ -882,11 +882,11 @@ if (isset($_GET['dl'], $_POST['token'])) {
if (!empty($_FILES) && !FM_READONLY) {
if(isset($_POST['token'])) {
if(!verifyToken($_POST['token'])) {
$response = array ('status' => 'error','info' => "Invalid Token.");
$response = array ('status' => 'error', 'info' => "Invalid Token.");
echo json_encode($response); exit();
}
} else {
$response = array ('status' => 'error','info' => "Token Missing.");
$response = array ('status' => 'error', 'info' => "Token Missing.");
echo json_encode($response); exit();
}