Browse Source

Fix PHP warnings

Julio 7 years ago
parent
commit
42ff3c24e1
1 changed files with 2 additions and 3 deletions
  1. 2 3
      main/lp/learnpath.class.php

+ 2 - 3
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',