diff options
author | Patrik Kernstock <info@pkern.at> | 2018-09-04 00:58:44 +0200 |
---|---|---|
committer | Patrik Kernstock <info@pkern.at> | 2018-09-04 00:58:44 +0200 |
commit | 8f9fa9ee13bcbf134901d35ce94945386d5f4647 (patch) | |
tree | cac6ffdb9043d6e2cb552963f7eea434dc5cbf54 /apps/oauth2 | |
parent | a0a34502c6cfa8d5e70147d055de7ee2d705633b (diff) | |
download | nextcloud-server-8f9fa9ee13bcbf134901d35ce94945386d5f4647.tar.gz nextcloud-server-8f9fa9ee13bcbf134901d35ce94945386d5f4647.zip |
Remove filter_var flags due to PHP 7.3 deprecation, fixes #10894
Signed-off-by: Patrik Kernstock <info@pkern.at>
Diffstat (limited to 'apps/oauth2')
-rw-r--r-- | apps/oauth2/lib/Controller/SettingsController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/oauth2/lib/Controller/SettingsController.php b/apps/oauth2/lib/Controller/SettingsController.php index 499969b93bb..ecf3179e1bc 100644 --- a/apps/oauth2/lib/Controller/SettingsController.php +++ b/apps/oauth2/lib/Controller/SettingsController.php @@ -74,7 +74,7 @@ class SettingsController extends Controller { public function addClient(string $name, string $redirectUri): JSONResponse { - if (filter_var($redirectUri, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED|FILTER_FLAG_HOST_REQUIRED) === false) { + if (filter_var($redirectUri, FILTER_VALIDATE_URL) === false) { return new JSONResponse(['message' => $this->l->t('Your redirect URL needs to be a full URL for example: https://yourdomain.com/path')], Http::STATUS_BAD_REQUEST); } |