summaryrefslogtreecommitdiffstats
path: root/apps/oauth2
diff options
context:
space:
mode:
authorrakekniven <mark.ziegler@rakekniven.de>2018-06-30 08:49:44 +0200
committerGitHub <noreply@github.com>2018-06-30 08:49:44 +0200
commit8370111cf425340445a63bce46a0443dd6e28c2d (patch)
treedb2c4c4365ccfaac1a534ae28086601f6b369a5f /apps/oauth2
parent2f8ebe2b35fd487495a5e2e7a3bea30f54b094d3 (diff)
downloadnextcloud-server-8370111cf425340445a63bce46a0443dd6e28c2d.tar.gz
nextcloud-server-8370111cf425340445a63bce46a0443dd6e28c2d.zip
Update SettingsController.php
Grammar fix. Uppercase URL See https://www.transifex.com/nextcloud/nextcloud/translate/#de/$/146983238?q=issue%3Aopen
Diffstat (limited to 'apps/oauth2')
-rw-r--r--apps/oauth2/lib/Controller/SettingsController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/oauth2/lib/Controller/SettingsController.php b/apps/oauth2/lib/Controller/SettingsController.php
index 67d36b69c97..499969b93bb 100644
--- a/apps/oauth2/lib/Controller/SettingsController.php
+++ b/apps/oauth2/lib/Controller/SettingsController.php
@@ -75,7 +75,7 @@ class SettingsController extends Controller {
string $redirectUri): JSONResponse {
if (filter_var($redirectUri, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED|FILTER_FLAG_HOST_REQUIRED) === 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);
+ 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);
}
$client = new Client();