diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-07-11 12:13:54 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-07-11 14:08:19 +0200 |
commit | 537468f4c4c8692a3dab4f911c505bee119acc55 (patch) | |
tree | be20e20ad4647e1befedd0271d9beb5e0d5189bd /apps/user_ldap/lib | |
parent | ebee3543ce30a88ccb631796826b075676680cb9 (diff) | |
download | nextcloud-server-537468f4c4c8692a3dab4f911c505bee119acc55.tar.gz nextcloud-server-537468f4c4c8692a3dab4f911c505bee119acc55.zip |
make tests deal with missing bcmath
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r-- | apps/user_ldap/lib/access.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 1ffe4d236f3..23ba4253ed3 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -1302,7 +1302,7 @@ class Access extends LDAPUtility implements user\IUserTools { \OCP\Util::writeLog('user_ldap', 'You need to install bcmath module for PHP to have support ' . 'for AD primary groups', \OCP\Util::WARN); - throw new \Excpetion('missing bcmath module'); + throw new \Exception('missing bcmath module'); } $srl = ord($sid[0]); $numberSubID = ord($sid[1]); |