Posted by Eidolon Night on February 9, 2009 at 2:05am
4 followers
Jump to:
| Project: | User Queue |
| Version: | 6.x-1.1 |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Issue Summary
Module is exactly what I needed for managing my guild's loot priority list. Thanks. :D
There seems to be an issue with the infinite queue size. It doesn't allow me to add users when I've set the size to 0 (infinite).
Comments
#1
Good catch - I realize now that I neglected to add special logic to ignore the queue length check if the length is 0. I'll fix that in the 6.x-1.1 version.
#2
The fix is on line 465..
<?phpif (count($form_state['values']['users']) >= $form['#max_size']) {
?>
to
<?phpif ($form['#max_size'] > 0 && count($form_state['values']['users']) >= $form['#max_size']) {
?>
cheers,
Nick
#3
Still seeing this on the 1.1 version.