Hi,
There error in plugins facetapi of show minimum items,
inf facetapibonus/plugins/filter_show_if_minimum_items.inc
line 22:

    if (!$this->active && $this->count = $this->settings->settings['show_minimum_items']) {

should be

    if (!$this->active && $this->count == $this->settings->settings['show_minimum_items']) {

width double equal "==" in condition.

Other things, the french translation is wrong, in french it's tranlate like "less than X items"

Comments

gigabates’s picture

Issue summary: View changes
Status: Active » Closed (fixed)

This looks like it's fixed in the dev release. It should be `<` rather than `==`.