Close Signups with maximum registrants

Working on a project this week I needed a module to allow users to sign up for orientation sessions and automatically close signups when the sessions are full. The signup module for Drupal does this but didn't have the ability to close signups after reaching the maximum number of participants. After a few false starts and simplifying the code I rolled a patch that adds eight lines of code and adds the functionality. The patch uses an unused column in the database so a database change isn't needed (I originally had added a new column but realized that the close_signup_limit column isn't used).

Category: 

1 Comment

Already been patched

Sometimes the best laid plans go awry. In looking for the close limit functionality I reviewed the documentation about what is changing in the current working version, and the list of feature requests without seeing this had been done. So it goes.