uc_catalog error with "Special offers" block

Project: 
Ubercart
Category: 
bug report
Priority: 
normal
Status: 
fixed

"Special offers" block can't be positioned or configured from admin/build/block due to a mistake in the uc_catalog.module code. To fix,

Replace:

        case 2:
          // no title, it takes it from the theme function
          $block['content'] = theme('uc_catalog_cheapest_products');

With:
        case 2:
          // no title, it takes it from the theme function
          $block['content'] = theme('uc_catalog_special_products');

Thanks, looks like Lyle

Thanks, looks like Lyle fixed it.