-
Incident report
-
Resolution: Fixed
-
Minor
-
2.2.4
The link for Configuration->Items in Host Inventory opens items.php and filters for host id but without "filter_set=1" the correct host is not shown.
include/views/inventory.host.view.php, Line 229
wrong:
$itemsLink = new CLink(_('Items'), 'items.php?hostid='.$this->data['host']['hostid'].url_param('groupid'));
correct:
$itemsLink = new CLink(_('Items'), 'items.php?filter_set=1&hostid='.$this->data['host']['hostid'].url_param('groupid'));