Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions report.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

defined('MOODLE_INTERNAL') || die();

require_once($CFG->dirroot . '/mod/quiz/report/attemptsreport.php');
require_once($CFG->dirroot . '/mod/quiz/report/statistics/report.php');
require_once($CFG->dirroot . '/question/type/stack/locallib.php');

Expand All @@ -35,7 +34,7 @@
* @copyright 2012 the University of Birmingham
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class quiz_stack_report extends quiz_attempts_report {
class quiz_stack_report extends \mod_quiz\local\reports\attempts_report {

/** @var The quiz context. */
protected $context;
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
defined('MOODLE_INTERNAL') || die();

$plugin->version = 2014111200;
$plugin->requires = 2013101800;
$plugin->requires = 2023042400;
$plugin->cron = 0;
$plugin->component = 'quiz_stack';
$plugin->maturity = MATURITY_STABLE;
Expand Down