Skip to content

Commit

Permalink
Merge branch 'Add---Individual-Quiz-Runner' of https://github.com/AAU…
Browse files Browse the repository at this point in the history
…-P5-Moodle/moodle-1 into Add---Individual-Quiz-Runner
  • Loading branch information
EmilChri committed Nov 8, 2024
2 parents 11243b5 + c99c61b commit adc64d6
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion server/apache/conf/extra/httpd-xampp.conf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ LoadModule php_module "C:/moodle-1/server/php/php8apache2_4.dll"
# </FilesMatch>
#</Directory>

#<Directory "C:/moodle-1/server/htdocsC:/moodle-1/server">
#<Directory "C:/moodle-1/server/htdocs/xampp">
# <IfModule php_module>
# <Files "status.php">
# php_admin_flag safe_mode off
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion server/moodle/mod/book/classes/output/main_action_menu.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function export_for_template(\renderer_base $output): array {
$next = $this->get_next_chapter();
$previous = $this->get_previous_chapter();

$context = \context_module::instance($this->cmid); //This is
$context = \context_module::instance($this->cmid);
$data = [];

if ($next) {
Expand Down
2 changes: 1 addition & 1 deletion server/moodle/mod/quiz/attempt.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
// Get submitted parameters.
$attemptid = required_param('attempt', PARAM_INT);
$page = optional_param('page', 0, PARAM_INT);
$cmid = optional_param('cmid', null, PARAM_INT);
$cmid = optional_param('cmid', null, PARAM_INT);

$attemptobj = quiz_create_attempt_handling_errors($attemptid, $cmid);
$page = $attemptobj->force_page_number_into_range($page);
Expand Down
3 changes: 0 additions & 3 deletions server/moodle/question/format.php
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,6 @@ public function importpreprocess() {
}

/**
* Process the file
* This method should not normally be overidden
* @re/**
* Process the file
* This method should not normally be overidden
* @return bool success
Expand Down

0 comments on commit adc64d6

Please sign in to comment.