Forum

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.

Uninitialized varia...
 
Notifications
Clear all

Uninitialized variable in PlanningElement

2 Posts
2 Users
0 Reactions
2,558 Views
(@antonio-grr)
Posts: 84
Active Member
Topic starter
 
[#4344]

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


 
Posted : 11 May 2017 17H19
(@babynus)
Posts: 14952
Member Admin
 

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...


 
Posted : 14 May 2017 14H06
Share:

Scroll to Top