diff options
author | castillo92 <37965565+castillo92@users.noreply.github.com> | 2021-04-16 08:56:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-16 08:56:20 +0200 |
commit | 12948aa2175cf0ebde30cceab4f5064f5a793cc8 (patch) | |
tree | 740ab7f849f1fd4bcafad45b550f18572b1819a3 /apps/files_sharing/lib/Controller/ShareAPIController.php | |
parent | 07278ed57d6997f34be35141ed5fa10dc6ee353a (diff) | |
download | nextcloud-server-12948aa2175cf0ebde30cceab4f5064f5a793cc8.tar.gz nextcloud-server-12948aa2175cf0ebde30cceab4f5064f5a793cc8.zip |
Update ShareAPIController.php
Change to capital letters in an abbreviation.
Signed-off-by: castillo92 javiercizquierdo@gmail.com
Diffstat (limited to 'apps/files_sharing/lib/Controller/ShareAPIController.php')
-rw-r--r-- | apps/files_sharing/lib/Controller/ShareAPIController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/lib/Controller/ShareAPIController.php b/apps/files_sharing/lib/Controller/ShareAPIController.php index f3b0467fa14..5c61649c66f 100644 --- a/apps/files_sharing/lib/Controller/ShareAPIController.php +++ b/apps/files_sharing/lib/Controller/ShareAPIController.php @@ -588,7 +588,7 @@ class ShareAPIController extends OCSController { } if ($shareWith === null) { - throw new OCSNotFoundException($this->l->t('Please specify a valid federated user id')); + throw new OCSNotFoundException($this->l->t('Please specify a valid federated user ID')); } $share->setSharedWith($shareWith); @@ -607,7 +607,7 @@ class ShareAPIController extends OCSController { } if ($shareWith === null) { - throw new OCSNotFoundException($this->l->t('Please specify a valid federated group id')); + throw new OCSNotFoundException($this->l->t('Please specify a valid federated group ID')); } $share->setSharedWith($shareWith); |