Closed (fixed)
Project:
Ubercart Auction
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
25 Mar 2009 at 20:13 UTC
Updated:
8 Apr 2009 at 23:10 UTC
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
Comment #1
Garrett Albright commentedWhoops! Nice catch. I'll include a fix in the next dev release. Thanks!