Project

General

Profile

Bug #6706

Updated by krileon over 6 years ago

The subtype parameter contains type and subtype as "8,CB Language Plugins" for example. This is directly used in a NOT IN query where statement against subtype. This of course fails since it also contains type. A test against concat of type and subtype should fix this. Example as follows. 

 @CONCAT_WS( ',', `type`, `subtype` ) NOT IN ( '8,CB Language Plugins', '8,CB Groupjive' )@ 

 Note this can't apply for module menu usages as those exclude params are just text fields where a comma separated list is supplied.

Back