Hi,
The "Version detail" report (versionDetail.php) does not display the elements of the sub-projects of the project selected as a parameter (it only displays the elements directly attached to the selected project).
It would seem more logical to also display the elements of the sub-projects.
To get this result, I replaced line 173:
$crit.=" and ".$obj->getDatabaseColumnName('idProject')."=$paramProject";
By :
$crit.=" and idProject in " . getVisibleProjectsList(false,$paramProject);
I now get the desired result.
Is this change correct ?
Is it possible to include the change in the next version ?
Thanks
Tony44
Almost that.
Correct fix i s
$crit.=" and ".$obj->getDatabaseColumnName('idProject')." in " . getVisibleProjectsList(false,$paramProject);
Will be included in next patch
Great ! thanks
Tony44