With the current version, the checkbox for toggling e-mail notification about auctions will show up on every profile category edit page instead of just the main one.

This can be solved by changing line 676 of uc_auction.module from

if (($op === 'form' || $op === 'register') && variable_get('uc_auction_notify_outbid', TRUE)) {

to

if ((($op === 'form' && $category === 'account') || $op === 'register') && variable_get('uc_auction_notify_outbid', TRUE)) {

I hope you will include this fix in the next version.

Comments

Garrett Albright’s picture

Assigned: Unassigned » Garrett Albright
Status: Active » Fixed

Whoops! Nice catch. I'll include a fix in the next dev release. Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.