Skip to content

Commit

Permalink
Fixed a problem with external packages
Browse files Browse the repository at this point in the history
  • Loading branch information
bobopinna committed Mar 15, 2007
1 parent ff6bc9f commit 45d44e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mod/scorm/validate.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
//
// SCORM Update
//
if (($launch != -1) && is_file($reference)) {
$fp = fopen($reference,"r");
if (($launch != -1) && ($fp = fopen($reference,"r"))) {
//$fp = fopen($reference,"r");
$fstat = fstat($fp);
fclose($fp);
if ($scorm = get_record("scorm","id",$scormid)) {
Expand Down

0 comments on commit 45d44e7

Please sign in to comment.