Browse Source

Fixing typo

Julio Montoya 12 years ago
parent
commit
2f90a48a58
1 changed files with 4 additions and 4 deletions
  1. 4 4
      main/newscorm/lp_controller.php

+ 4 - 4
main/newscorm/lp_controller.php

@@ -170,22 +170,22 @@ if (!$lp_found || (!empty($_REQUEST['lp_id']) && $_SESSION['oLP']->get_id() != $
                     case 1:
                         if ($debug > 0) error_log('New LP - found row - type dokeos - Calling constructor with '.api_get_course_id().' - '.$lp_id.' - '.api_get_user_id(), 0);
                         $oLP = new learnpath(api_get_course_id(), $lp_id, api_get_user_id());
-                        if ($oLP !== false) { $lp_found = true; } else { eror_log($oLP->error, 0); }
+                        if ($oLP !== false) { $lp_found = true; } else { error_log($oLP->error, 0); }
                          break;
                     case 2:
                         if ($debug > 0) error_log('New LP - found row - type scorm - Calling constructor with '.api_get_course_id().' - '.$lp_id.' - '.api_get_user_id(), 0);
                         $oLP = new scorm(api_get_course_id(), $lp_id, api_get_user_id());
-                        if ($oLP !== false) { $lp_found = true; } else { eror_log($oLP->error, 0); }
+                        if ($oLP !== false) { $lp_found = true; } else { error_log($oLP->error, 0); }
                         break;
                     case 3:
                         if ($debug > 0) error_log('New LP - found row - type aicc - Calling constructor with '.api_get_course_id().' - '.$lp_id.' - '.api_get_user_id(), 0);
                         $oLP = new aicc(api_get_course_id(),$lp_id,api_get_user_id());
-                        if ($oLP !== false) { $lp_found = true; } else { eror_log($oLP->error, 0); }
+                        if ($oLP !== false) { $lp_found = true; } else { error_log($oLP->error, 0); }
                         break;
                     default:
                         if ($debug > 0) error_log('New LP - found row - type other - Calling constructor with '.api_get_course_id().' - '.$lp_id.' - '.api_get_user_id(), 0);
                         $oLP = new learnpath(api_get_course_id(),$lp_id,api_get_user_id());
-                        if ($oLP !== false) { $lp_found = true; } else { eror_log($oLP->error, 0); }
+                        if ($oLP !== false) { $lp_found = true; } else { error_log($oLP->error, 0); }
                         break;
                 }
             }