minor fixed

This commit is contained in:
Tony Yang 2019-09-25 16:40:45 +08:00
parent 2017b71a20
commit e334c14fe6
Signed by: t510599
GPG Key ID: D88388851C28715D

View File

@ -11,7 +11,7 @@ $user = validate_user();
if (!$user->valid) {
http_response_code(403);
header("Content-Type: applcation/json");
echo json_encode(array('status' => 'invalid'));
echo json_encode(array('status' => 'novalid'));
exit;
}