Downloads
Download tar.gz
174.31 KB
MD5: 299018db93de5b045719999b635dd388
SHA-1: 00e2b3401f1d3e8860c8247901da130a0862be37
SHA-256: 4a8cf8c9e0868c413b3858760b175aaa0caabb8ec06855b0048ea37e88965e5c
Download zip
214.81 KB
MD5: 6041c433f887f2560e38c5180130bb63
SHA-1: d851676f8da92d87c7f7fec606a9ef4bb300838d
SHA-256: 1ecafaa598270b0e153a5a8194842bbd95a8ce56534f385309b69c00fd92f9dd
Release notes
Once again, I've been naughty and I'm introducing API and schema changes here in a "release candidate". Sorry about that! However, ultimately, they're for the best, even if it's a slightly bumpy ride right now.
Sites using Signup status which are attempting to make use of the "Modifies signup count" setting for any status codes will be happy to know that upgrading to this release and 6.x-1.0-alpha2 of signup_status will make feature actually work. However, sites using Signup status should upgrade to signup_status 6.x-1.0-alpha2 and run update.php before upgrading to this release (although you need to upgrade to signup rc6 before signup_status alpha2 will actually work).
Bugs fixed since version 6.x-1.0-rc5
- #439294 by dww: Fixed bug where %user_signup_info was not being replaced with an empty string on sites that do not define any extra fields on the signup form.
- #539052 by dww: Fixed jQuery bug when users edited their signups that was causing most of the form elements to be enabled before pressing the 'Edit' button (all form elements should be disabled at first).
- #582626 by dww: Fixed bug in the visibility logic for the "Signup: Node: Signup link" views field handler which used to think that if signups were closed on a node that the node wasn't signup-enabled. This would cause the Signup link fields to only appear on nodes where signups were open.
- #578278 by neil.brown, dww: Fixed bug where the signup_confirm_email field was shown to administrators editing another user's signup.
API and schema changes since version 6.x-1.0-rc5
- #581734 by dww: Improved the Signup API by adding some much needed hooks:
- hook_signup_data_alter() to modify a $signup object before it's saved
- hook_signup_insert() invoked when a signup is inserted into the DB
- hook_signup_update() invoked when a signup is updated in the DB
- #581652 by dww: Added a {signup_log}.count_towards_limit column and adjusted the limit logic to only operate on the effective total (the SUM() of {signup_log}.count_towards_limit) not the total # of signups. Both signup_total and signup_effective_total are loaded into $node.
Other changes since version 6.x-1.0-rc5
- #578502 by dww: Moved signup-related settings from node/N/edit to a new "Settings" subtab at node/N/signups/settings. There's now a "Signup settings" option in the "Signup: Node: Signup link" Views field handler.
- #578592 by dww: Cleaned up and fixed the "Signup summary" at the top of the node/N/signups/admin. The UI also makes sense now for signups that don't count towards the signup limit (#581652).
- #578344 by dww: Added a "Signup" group on the module administration page (admin/build/modules) for all the signup-related modules.