Bug in stock.php?

ICE

Thanks for your quick respond and fix!

freeSbee

Bakery v1.82, stock.php line 47 should be:
$clause = !empty($category) ? " AND section_id = $category" : '';

Thanks for reporting!

ICE

Hello, maybe, i found a bug in stock.php.

If i try to sort items in stock administration, following error appears:
QuoteCall 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?