Daniel,

This looks like a bug. Edit lib/AttributeFactory.php, and around line 88 
add a case statement for "multiselect".

It should look like this:

case 'password':
 return $this->newPasswordAttribute($name,$values,$server_id,$source);
 
case 'multiselect': //<- ADD THIS LINE
case 'select':
 return $this->newSelectionAttribute($name,$values,$server_id,$source);

Then you should be good to go.

Let me know that it works, and I'll commit this, so that it is included 
for the next release.

...deon
Daniel Grimwood wrote:
> But that outputs a lot of text boxes rather than checkboxes.  Any tips on how 
> to do it?  I can use MultiList and search to get roughly the right thing, but 
> don't want to search.
>   


------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
phpldapadmin-users mailing list
phpldapadmin-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/phpldapadmin-users

Reply via email to