Skip to content

Commit 80112d1

Browse files
committed
Validation of input '0' value on $_POST parameters.
1 parent 90bc8bb commit 80112d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1569,7 +1569,7 @@
15691569
array_push($args, "download", $apiKey);
15701570

15711571
if(!isset($_POST["name"]) || empty($_POST["name"]) ||
1572-
!isset($_POST["should_expire"]) || empty($_POST["should_expire"])) {
1572+
!isset($_POST["should_expire"]) || Validate::isEmpty($_POST["should_expire"])) {
15731573
Response::failedMessage("Insufficient parameter arity.");
15741574
return;
15751575
}

0 commit comments

Comments
 (0)