diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-07 14:06:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-07 14:06:12 +0200 |
commit | 1c52bd77040af8f9143e68ca0f30d66782f152f7 (patch) | |
tree | 02b120850c2fa95cd7dc8f41cf827b720ec45513 /lib | |
parent | 68a37b015c4e6f7e85b5924abde5d0673ab9a972 (diff) | |
parent | b8774816f6e78de64164f56cfe70afc750351e55 (diff) | |
download | nextcloud-server-1c52bd77040af8f9143e68ca0f30d66782f152f7.tar.gz nextcloud-server-1c52bd77040af8f9143e68ca0f30d66782f152f7.zip |
Merge pull request #47808 from nextcloud/rakekniven-patch-2
chore(i18n): Spelling of ID
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Share20/Manager.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php index bb34468db6e..5457e8024a4 100644 --- a/lib/private/Share20/Manager.php +++ b/lib/private/Share20/Manager.php @@ -762,7 +762,7 @@ class Manager implements IManager { try { $originalShare = $this->getShareById($share->getFullId()); } catch (\UnexpectedValueException $e) { - throw new \InvalidArgumentException($this->l->t('Share does not have a full id')); + throw new \InvalidArgumentException($this->l->t('Share does not have a full ID')); } // We cannot change the share type! @@ -1021,7 +1021,7 @@ class Manager implements IManager { try { $share->getFullId(); } catch (\UnexpectedValueException $e) { - throw new \InvalidArgumentException($this->l->t('Share does not have a full id')); + throw new \InvalidArgumentException($this->l->t('Share does not have a full ID')); } $this->dispatcher->dispatchTyped(new BeforeShareDeletedEvent($share)); |