Use case insensitive compare when validating the fever api key

User aschilling made some extensive client tests with miniflux and noticed that Mr Reader (iOS) and ReadKit (OSX) are sending the API key in upper case.
This commit is contained in:
Mathias Kresin 2015-12-04 18:12:42 +01:00
parent 1ca2444267
commit c511b2264c
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ function auth()
$response = array(
'api_version' => 3,
'auth' => (int) (@$_POST['api_key'] === $api_key),
'auth' => (int) (isset($_POST['api_key']) && (strcasecmp($_POST['api_key'], $api_key) === 0 )),
'last_refreshed_on_time' => time(),
);