diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-01-13 09:51:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 09:51:04 +0100 |
commit | 89d109a4d9a9c471f9dde7d5bd12a60ca91fe1f9 (patch) | |
tree | 76e56e0afc214eb0d9542b22e382c22fd77ae4b9 /lib/private/Accounts/AccountManager.php | |
parent | 7d5a63ab216347e412dc285667026eb66715cbf9 (diff) | |
parent | 6312c0df6949955d1cd59c3dd444268e0773293c (diff) | |
download | nextcloud-server-89d109a4d9a9c471f9dde7d5bd12a60ca91fe1f9.tar.gz nextcloud-server-89d109a4d9a9c471f9dde7d5bd12a60ca91fe1f9.zip |
Merge pull request #30508 from nextcloud/fix/psaml-bin
Fix psalm not running
Diffstat (limited to 'lib/private/Accounts/AccountManager.php')
-rw-r--r-- | lib/private/Accounts/AccountManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Accounts/AccountManager.php b/lib/private/Accounts/AccountManager.php index cdfb123179e..7f855c07d46 100644 --- a/lib/private/Accounts/AccountManager.php +++ b/lib/private/Accounts/AccountManager.php @@ -633,7 +633,7 @@ class AccountManager implements IAccountManager { } // the value col is limited to 255 bytes. It is used for searches only. - $value = $property['value'] ? Util::shortenMultibyteString($property['value'], 255) : ''; + $value = $property['value'] ? Util::shortenMultibyteString($property['value'], 255) : ''; $query->setParameter('name', $property['name']) ->setParameter('value', $value); |