diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-03-29 19:31:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-29 19:31:35 +0200 |
commit | 0315e2ea367796f825fe5096f3478df64927967a (patch) | |
tree | 854954c8f7a702a70db14b609328c9bd59a0886e /apps | |
parent | 6d8e447895e40525b789f36f42986d589b7026c0 (diff) | |
parent | a4b9bd29a90cdfd9ad36f5e2d8872de62f45ba58 (diff) | |
download | nextcloud-server-0315e2ea367796f825fe5096f3478df64927967a.tar.gz nextcloud-server-0315e2ea367796f825fe5096f3478df64927967a.zip |
Merge pull request #4145 from nextcloud/ldap-downstream-54
Add tooltips to LDAP wizard special attributtes
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_ldap/templates/settings.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index e53456c703c..6942b2eb2b1 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -106,9 +106,9 @@ style('user_ldap', 'settings'); </div> <h3><?php p($l->t('Special Attributes'));?></h3> <div> - <p><label for="ldap_quota_attr"><?php p($l->t('Quota Field'));?></label><input type="text" id="ldap_quota_attr" name="ldap_quota_attr" data-default="<?php p($_['ldap_quota_attr_default']); ?>"/></p> - <p><label for="ldap_quota_def"><?php p($l->t('Quota Default'));?></label><input type="text" id="ldap_quota_def" name="ldap_quota_def" data-default="<?php p($_['ldap_quota_def_default']); ?>" title="<?php p($l->t('in bytes'));?>" /></p> - <p><label for="ldap_email_attr"><?php p($l->t('Email Field'));?></label><input type="text" id="ldap_email_attr" name="ldap_email_attr" data-default="<?php p($_['ldap_email_attr_default']); ?>" /></p> + <p><label for="ldap_quota_attr"><?php p($l->t('Quota Field'));?></label><input type="text" id="ldap_quota_attr" name="ldap_quota_attr" data-default="<?php p($_['ldap_quota_attr_default']); ?>" title="<?php p($l->t('Leave empty for user\'s default quota. Otherwise, specify an LDAP/AD attribute.'));?>" /></p> + <p><label for="ldap_quota_def"><?php p($l->t('Quota Default'));?></label><input type="text" id="ldap_quota_def" name="ldap_quota_def" data-default="<?php p($_['ldap_quota_def_default']); ?>" title="<?php p($l->t('Override default quota for LDAP users who do not have a quota set in the Quota Field.'));?>" /></p> + <p><label for="ldap_email_attr"><?php p($l->t('Email Field'));?></label><input type="text" id="ldap_email_attr" name="ldap_email_attr" data-default="<?php p($_['ldap_email_attr_default']); ?>" title="<?php p($l->t('Set the user\'s email from their LDAP attribute. Leave it empty for default behaviour.'));?>" /></p> <p><label for="home_folder_naming_rule"><?php p($l->t('User Home Folder Naming Rule'));?></label><input type="text" id="home_folder_naming_rule" name="home_folder_naming_rule" title="<?php p($l->t('Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute.'));?>" data-default="<?php p($_['home_folder_naming_rule_default']); ?>" /></p> </div> </div> |