diff --git a/lib/db/upgrade.php b/lib/db/upgrade.php index 629ab19cb35..e483b7bc0f8 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -2072,7 +2072,7 @@ function xmldb_main_upgrade($oldversion) { // Moodle v3.1.0 release upgrade line. // Put any upgrade step following this. - if ($oldversion < 2016070700.01) { + if ($oldversion < 2016081100.01) { // If someone is emotionally attached to it let's leave the config (basically the version) there. if (!file_exists($CFG->dirroot . '/report/search/classes/output/form.php')) { @@ -2080,7 +2080,7 @@ function xmldb_main_upgrade($oldversion) { } // Savepoint reached. - upgrade_main_savepoint(true, 2016070700.01); + upgrade_main_savepoint(true, 2016081100.01); } return true; diff --git a/report/search/version.php b/report/search/version.php deleted file mode 100644 index 814d82966ff..00000000000 --- a/report/search/version.php +++ /dev/null @@ -1,29 +0,0 @@ -. - -/** - * Version details. - * - * @package report_search - * @copyright 2015 David Monllao {@link http://www.davidmonllao.com} - * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later - */ - -defined('MOODLE_INTERNAL') || die(); - -$plugin->version = 2016052300; // The current plugin version (Date: YYYYMMDDXX). -$plugin->requires = 2016051900; // Requires this Moodle version. -$plugin->component = 'report_search'; // Full name of the plugin (used for diagnostics). diff --git a/version.php b/version.php index 90b40022f71..19655fbe6e0 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2016081100.00; // YYYYMMDD = weekly release date of this DEV branch. +$version = 2016081100.01; // YYYYMMDD = weekly release date of this DEV branch. // RR = release increments - 00 in DEV branches. // .XX = incremental changes.