Skip to content

Commit

Permalink
MDL-32443 queupgradehelper cli: fix path & whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Apr 16, 2012
1 parent c046a3f commit c175e01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions local/qeupgradehelper/cli/convert.php
Expand Up @@ -71,7 +71,7 @@
return; return;
} }


require_once(dirname(__FILE__) . '/afterupgradelib.php'); require_once(dirname(dirname(__FILE__)) . '/afterupgradelib.php');




$starttime = time(); $starttime = time();
Expand Down Expand Up @@ -107,7 +107,7 @@
mtrace('qeupgradehelper: No more quizzes to process.'); mtrace('qeupgradehelper: No more quizzes to process.');
break; // No more to do. break; // No more to do.
} }

$quizid = $quiz->id; $quizid = $quiz->id;
} }
$quizsummary = local_qeupgradehelper_get_quiz($quizid); $quizsummary = local_qeupgradehelper_get_quiz($quizid);
Expand All @@ -120,7 +120,7 @@
} else { } else {
mtrace('quiz ' . $quizid . ' not found or already upgraded.'); mtrace('quiz ' . $quizid . ' not found or already upgraded.');
} }

$count++; $count++;
} }


Expand Down

0 comments on commit c175e01

Please sign in to comment.