LEMONLDAP::NG : an uid can start with a "0"

environments/ppa-mbqj77/deployments/1
Xavier Guimard 17 years ago
parent 45670f3d21
commit 64f0192eda
  1. 3
      modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm

@ -354,7 +354,8 @@ sub process {
}
# Ajax request to list users starting by a letter
elsif ( my $letter = $self->param('letter') ) {
elsif ( defined( $self->param('letter') ) ) {
my $letter = $self->param('letter');
my ($byUid);
print $self->header( -type => 'text/html; charset=utf8' );
$globalStorage->get_key_from_all_sessions(

Loading…
Cancel
Save