diff options
author | kondou <kondou@ts.unde.re> | 2013-04-20 22:45:17 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-04-20 22:46:37 +0200 |
commit | b8fe7025da4b0b6f0fde9dde4553d0b29eefb10c (patch) | |
tree | 539094c4c0e026a34c83bc92d4ad9e8e2631a423 /apps/user_ldap/appinfo/app.php | |
parent | ec280e6f9f43e2f1d74c9ddf1e0fd64aabddc25f (diff) | |
download | nextcloud-server-b8fe7025da4b0b6f0fde9dde4553d0b29eefb10c.tar.gz nextcloud-server-b8fe7025da4b0b6f0fde9dde4553d0b29eefb10c.zip |
Use !== and === in user_ldap app – Part 1
Diffstat (limited to 'apps/user_ldap/appinfo/app.php')
-rw-r--r-- | apps/user_ldap/appinfo/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/appinfo/app.php b/apps/user_ldap/appinfo/app.php index 89410b5ef07..81eaa0404b7 100644 --- a/apps/user_ldap/appinfo/app.php +++ b/apps/user_ldap/appinfo/app.php @@ -24,7 +24,7 @@ OCP\App::registerAdmin('user_ldap', 'settings'); $configPrefixes = OCA\user_ldap\lib\Helper::getServerConfigurationPrefixes(true); -if(count($configPrefixes) == 1) { +if(count($configPrefixes) === 1) { $connector = new OCA\user_ldap\lib\Connection($configPrefixes[0]); $userBackend = new OCA\user_ldap\USER_LDAP(); $userBackend->setConnector($connector); |