v4.1 you mean
Could you try the following. Find the modules/mod_comment/helper.php file and go to line
54
self::$_secids = intval($params->get('secid', ''));
if (!self::$_secids || $component!='') {
self::$_secids = strval($params->get('secids', ''));
}
self::$_catids = intval($params->get('catid', ''));
if (!self::$_catids || $component!='') {
self::$_catids = strval($params->get('catids', ''));
}
and change it to this:
self::$_secids = intval($params->get('secid', ''));
if (!self::$_secids) {
self::$_secids = strval($params->get('secids', ''));
}
self::$_catids = intval($params->get('catid', ''));
if (!self::$_catids) {
self::$_catids = strval($params->get('catids', ''));
}
It should work like this now:
if you have selected a category for com_content, then the values in the field should not be taken in account. If you haven't selected a category, but have entered category ids, the category ids should be taken in account.
Daniel