WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Bakery Shop => Topic started by: ICE on May 29, 2017, 09:45:59 PM

Title: Bug in stock.php?
Post by: ICE on May 29, 2017, 09:45:59 PM
Hello, maybe, i found a bug in stock.php.

If i try to sort items in stock administration, following error appears:
Quote
Call to a member function numRows() on null in /modules/bakery/stock.php on line 111

So i searched in older versions of bakery and i found a solution:

In version 1.82 the line 47 in stock.php looks like this:
Quote
!empty($clause = $category) ? " AND section_id = $category" : '';

In older versions from bakery, line 47 in stock.php looks like this:
Quote
$clause = $category != '' ? " AND section_id = $category" : '';

When i remove "!empty" the sorting works fine ... What was the intention to add the "!empty" to this line?
Title: Re: Bug in stock.php?
Post by: freeSbee on May 30, 2017, 08:21:09 AM
Bakery v1.82, stock.php line 47 should be:
Code: [Select]
$clause = !empty($category) ? " AND section_id = $category" : '';
Thanks for reporting!
Title: Re: Bug in stock.php?
Post by: ICE on May 30, 2017, 01:25:46 PM
Thanks for your quick respond and fix!