News:

Looking for documentation? Take a look on our wiki

Main Menu

Problem with search by product type parameters

Started by doorknob, August 20, 2008, 20:50:01 PM

Previous topic - Next topic

doorknob

I have found it necessary to make the following change to shop_browse_queries.php because some unselected parameters return a value of zero.
Line 196 changed from
if (is_array($get_item_value) ? count($get_item_value) : strlen($get_item_value) ) {

to
if (is_array($get_item_value) ? count($get_item_value) : (strlen($get_item_value) && $get_item_value <> '0')) {


regards
Phil