VirtueMart Forum

VirtueMart 2 + 3 + 4 => Plugins: Payment, Shipment and others => Topic started by: man.of.earth on February 18, 2019, 22:04:45 PM

Title: Bug in VM Search plugin
Post by: man.of.earth on February 18, 2019, 22:04:45 PM
Hello everyone,

The VM Search plugin had a bug, i.e. it also displayed the unpublished products.
The bug was in the query; simply put a pair of parentheses on lines 192 and respectively 194:
before:
" WHERE {$where} " .
" {$shopper_group_condition} " .
" {$uncategorized_products_condition} " .
" AND p.published = 1" .

after:
" WHERE ({$where} " .
" {$shopper_group_condition} " .
" {$uncategorized_products_condition}) " .
" AND p.published = 1" .


Regards,
George
www.proxima-mundi.ro
Title: Re: Bug in VM Search plugin
Post by: Ventsi Genchev on February 19, 2019, 22:04:45 PM
https://forum.virtuemart.net/index.php?topic=141807.0