Version 1.6.2
line 2076 of include/forms.inc.php:
causes a MySQL error when trying to copy a selected item to a host group. This line adds an extra "ORDER BY" clause to the MySQL statement on line 2055. Changing line 2076 to:
Fixes the problem.
line 2076 of include/forms.inc.php:
Code:
$db_targets = DBselect($target_sql.' order by target_name');
Code:
$db_targets = DBselect($target_sql);