diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-06-01 01:33:04 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-06-01 01:33:04 +0200 |
commit | 2bbd5147e7d42cebbcdbf5676372b967b6017695 (patch) | |
tree | a581cdb6b28c87e377744ded3bcb3913e7c0bde2 /apps/user_ldap/templates | |
parent | 8318b2a137e1128aa90602ae47ea78737d4f6a2d (diff) | |
download | nextcloud-server-2bbd5147e7d42cebbcdbf5676372b967b6017695.tar.gz nextcloud-server-2bbd5147e7d42cebbcdbf5676372b967b6017695.zip |
remove check, user_webdavauth is not an app anymore for long
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/templates')
-rw-r--r-- | apps/user_ldap/templates/settings.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index 58116b8c0e7..82e61cd5dcd 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -66,9 +66,7 @@ style('user_ldap', 'settings'); <li class="ldapSettingsTabs"><a href="#ldapSettings-2"><?php p($l->t('Expert'));?></a></li> <li class="ldapSettingsTabs"><a href="#ldapSettings-1"><?php p($l->t('Advanced'));?></a></li> </ul> - <?php if(OCP\App::isEnabled('user_webdavauth')) { - print_unescaped('<p class="ldapwarning">'.$l->t('<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them.').'</p>'); - } + <?php if(!function_exists('ldap_connect')) { print_unescaped('<p class="ldapwarning">'.$l->t('<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it.').'</p>'); } |