Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hi.
In initializeFullList method of PlanningElement model you write
$parentPrecListTmp = self::getRecursivePredecessor($directPredecessors, $idParent, $result, 'parent', $visited);
but $idParent is uninitialized at this time ( it will be in an inner loop).
Ypu probabily mean
$parentPrecListTmp = self::getRecursivePredecessor($directPredecessors, $id, $result, 'parent', $visited);
Best regards
Hi,
This time I don't agree with you
$parentPrecListTmp = self::getRecursivePredecessor($directPredecessors, $idParent, $result, 'parent', $visited);
is inside the loop
foreach ($pe->_parentList as $idParent=>$parent) {
so $idParent is defined...