diff --git a/question/type/ddwtos/README.txt b/question/type/ddwtos/README.txt index 4ed8dd2183c..9caef2e03b1 100644 --- a/question/type/ddwtos/README.txt +++ b/question/type/ddwtos/README.txt @@ -4,11 +4,10 @@ This question type requires that gapselect question type https://github.com/moodleou/moodle-qtype_gapselect/ to be installed in order to work. -This question type was originally the work of Mahmoud Kassaei at -the Open University (http://www.open.ac.uk/). -It was updated to work with the Moodle 2.1 question engine by Tim Hunt. -It was then refactored extenstively by Jamie Pratt (http://jamiep.org/) -as part of creating the gapselect question type. +This question type was originally the work of Mahmoud Kassaei at the Open +University (http://www.open.ac.uk/). It was updated to work with the Moodle 2.1 +question engine by Tim Hunt. It was then refactored extenstively by Jamie Pratt +(http://jamiep.org/) as part of creating the gapselect question type. This question type is compatible with Moodle 2.1+. @@ -19,5 +18,4 @@ Then add question/type/ddwtos to your git ignore. Alternatively, download the zip from https://github.com/moodleou/moodle-qtype_ddwtos/zipball/master -unzip it into the question/type folder, and then rename the new folder to -ddwtos. +unzip it into the question/type folder, and then rename the new folder to ddwtos. diff --git a/question/type/ddwtos/lang/en/qtype_ddwtos.php b/question/type/ddwtos/lang/en/qtype_ddwtos.php index a6176bdb30c..c61c60fd331 100644 --- a/question/type/ddwtos/lang/en/qtype_ddwtos.php +++ b/question/type/ddwtos/lang/en/qtype_ddwtos.php @@ -16,8 +16,7 @@ /** * - * @package qtype - * @subpackage ddwtos + * @package qtype_ddwtos * @copyright 2011 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ diff --git a/question/type/ddwtos/version.php b/question/type/ddwtos/version.php index defbacae7e9..a35e26cba14 100644 --- a/question/type/ddwtos/version.php +++ b/question/type/ddwtos/version.php @@ -17,16 +17,21 @@ /** * Version information for the drag-and-drop words into sentences question type. * - * @package qtype - * @subpackage ddwtos + * @package qtype_ddwtos * @copyright 2011 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2011051200; -$plugin->requires = 2011051212; + +$plugin->version = 2011051200; +$plugin->requires = 2011120500; +$plugin->cron = 0; +$plugin->component = 'qtype_ddwtos'; +$plugin->maturity = MATURITY_STABLE; +$plugin->release = '1.0'; + $plugin->dependencies = array( 'qtype_gapselect' => 2011020100, -); \ No newline at end of file +);