diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 5227aed0d..05d02fa69 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -39,6 +39,7 @@ - Added: WebGUI::Pluggable find() and findAndLoad() for easier module loading - Added RFE #327: Select All button to class list in Search asset - Fixed #8984: Weather Asset missing hoverhelp + - Fixed #8983: Missing Help in Group Edit screen 7.6.1 - changed: the list of extensions for the export system to pass through diff --git a/lib/WebGUI/Operation/Group.pm b/lib/WebGUI/Operation/Group.pm index 127febd0e..5e57310ef 100644 --- a/lib/WebGUI/Operation/Group.pm +++ b/lib/WebGUI/Operation/Group.pm @@ -447,20 +447,20 @@ sub www_editGroup { $f->text( -name=>"ldapGroup", -label=>$i18n->get("LDAPLink_ldapGroup","AuthLDAP"), - -hoverHelp=>$i18n->get("LDAPLink_ldapGroup","AuthLDAP"), + -hoverHelp=>$i18n->get("LDAPLink_ldapGroup description","AuthLDAP"), -value=>$g->ldapGroup ); $f->text( -name=>"ldapGroupProperty", -label=>$i18n->get("LDAPLink_ldapGroupProperty","AuthLDAP"), - -hoverHelp=>$i18n->get("LDAPLink_ldapGroupProperty","AuthLDAP"), + -hoverHelp=>$i18n->get("LDAPLink_ldapGroupProperty description","AuthLDAP"), -value=>$g->ldapGroupProperty, -defaultValue=>"member" ); $f->text( -name=>"ldapRecursiveProperty", -label=>$i18n->get("LDAPLink_ldapRecursiveProperty","AuthLDAP"), - -hoverHelp=>$i18n->get("LDAPLink_ldapRecursiveProperty","AuthLDAP"), + -hoverHelp=>$i18n->get("LDAPLink_ldapRecursiveProperty description","AuthLDAP"), -value=>$g->ldapRecursiveProperty ); $f->textarea(