At line 75 of uc_attribute_stock_filter.module:
if (!$stock->count)
should be changed to
if ($stock->count<=0)
so that orders that caused the stock level to go negative (if a person orders more than the available number of items) gets the "out-of-stock" message.
Comments
Comment #1
henrrrik commentedFixed, thanks!