Fix PHP warnings

pull/3063/head
Julio 8 years ago
parent 2f5a3b0994
commit 42ff3c24e1
  1. 5
      main/lp/learnpath.class.php

@ -3022,6 +3022,7 @@ class learnpath
'type' => $this->items[$item_id]->get_type(),
'description' => $this->items[$item_id]->get_description(),
'path' => $this->items[$item_id]->get_path(),
'parent' => $this->items[$item_id]->get_parent(),
);
}
if ($this->debug > 2) {
@ -3179,9 +3180,7 @@ class learnpath
}
$listParent[] = $subtree;
}
if (!in_array($subtree['type'], $dirTypes) &&
((isset($subtree['parent']) && $subtree['parent'] == null) || !isset($subtree['parent']))
) {
if (!in_array($subtree['type'], $dirTypes) && $subtree['parent'] == null) {
$classStatus = [
'not attempted' => 'scorm_not_attempted',
'incomplete' => 'scorm_not_attempted',

Loading…
Cancel
Save