diff --git a/docs/changelog/5.x.x.txt b/docs/changelog/5.x.x.txt index 416931406..bb6c19b3e 100644 --- a/docs/changelog/5.x.x.txt +++ b/docs/changelog/5.x.x.txt @@ -1,6 +1,10 @@ 5.5.7 - bugfix [ 935552 ] USS bug (w/ and w/o img mixed posts). - bugfix [ 926610 ] WebGUI::Wobject::Article + - Bugfix [ 942865 ] urlizedTitle problem. (Thanks to tr0nd). + - Fixed a possible counting problem when looking for an infinite loop in + groups of groups. + - Fixed a bug in the LDAP module that required the RDN to be a URL. 5.5.6 diff --git a/lib/WebGUI/Auth/LDAP.pm b/lib/WebGUI/Auth/LDAP.pm index ab957934e..bca2fe31b 100644 --- a/lib/WebGUI/Auth/LDAP.pm +++ b/lib/WebGUI/Auth/LDAP.pm @@ -311,7 +311,7 @@ sub editUserSettingsForm { my $self = shift; my $f = WebGUI::HTMLForm->new; $f->text("ldapUserRDN",WebGUI::International::get(9,'Auth/LDAP'),$session{setting}{ldapUserRDN}); - $f->text("ldapURL",WebGUI::International::get(5,'Auth/LDAP'),$session{setting}{ldapURL}); + $f->url("ldapURL",WebGUI::International::get(5,'Auth/LDAP'),$session{setting}{ldapURL}); $f->text("ldapId",WebGUI::International::get(6,'Auth/LDAP'),$session{setting}{ldapId}); $f->text("ldapIdName",WebGUI::International::get(7,'Auth/LDAP'),$session{setting}{ldapIdName}); $f->text("ldapPasswordName",WebGUI::International::get(8,'Auth/LDAP'),$session{setting}{ldapPasswordName});