Skip to content

Commit

Permalink
Merge pull request #39 from talview/bugfix_incorrect_proctor_type
Browse files Browse the repository at this point in the history
FIX: incorrect proctor type
  • Loading branch information
rohansharmasitoula authored Aug 16, 2023
2 parents 85a6609 + 107b31a commit fef404e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion datastore.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
$template->plugin_installed = true;
$quizaccess_proctor_setting = $DB->get_record('quizaccess_proctor', array('quizid' => $quiz->id));
}
if (!$quizaccess_proctor_setting) {
if ($quizaccess_proctor_setting) {
$template->session_type = $quizaccess_proctor_setting->proctortype;
} else {
$template->session_type = "ai_proctor";
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2023081101;
$plugin->version = 2023081601;
$plugin->requires = 2020061500;
$plugin->release = '3.1.0 (Build: 2023081101)';
$plugin->release = '3.1.0 (Build: 2023081601)';
$plugin->maturity = MATURITY_STABLE;
$plugin->component = 'local_proview';

Expand Down

0 comments on commit fef404e

Please sign in to comment.