Skip to content

Commit 6bf8d57

Browse files
authored
Merge pull request #456 from turnitin/develop
Develop to master for v2019062501
2 parents b39e4c4 + 602c698 commit 6bf8d57

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### Date: 2019-June-25
2+
### Release: v2019062501
3+
4+
#### :wrench: Fixes and enhancements
5+
6+
---
7+
8+
#### Upgrade issues resolved
9+
10+
There was an issue affecting users trying to upgrade the latest version of Moodle Plagiarism Plugin. It was discovered that users attempting to upgrade to v2019060601 from versions older than v2016011101 weren't able to do so. This latest version will allow for all users to upgrade to the latest version from any of the previous versions.
11+
12+
---
113
### Date: 2019-June-06
214
### Release: v2019060601
315

db/upgrade.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ function xmldb_plagiarism_turnitin_upgrade($oldversion) {
186186
if (!$dbman->field_exists($table, $field)) {
187187
$dbman->add_field($table, $field);
188188
}
189-
upgrade_plugin_savepoint(true, 2016011101, plagiarism’, ‘turnitin);
189+
upgrade_plugin_savepoint(true, 2016011101, 'plagiarism', 'turnitin');
190190
}
191191

192192
if ($oldversion < 2016011104) {
@@ -195,7 +195,7 @@ function xmldb_plagiarism_turnitin_upgrade($oldversion) {
195195
if (!$dbman->field_exists($table, $field)) {
196196
$dbman->add_field($table, $field);
197197
}
198-
upgrade_plugin_savepoint(true, 2016011104, plagiarism’, ‘turnitin);
198+
upgrade_plugin_savepoint(true, 2016011104, 'plagiarism', 'turnitin');
199199
}
200200

201201
if ($oldversion < 2016011105) {
@@ -239,7 +239,7 @@ function xmldb_plagiarism_turnitin_upgrade($oldversion) {
239239
if (!$dbman->field_exists($table, $field)) {
240240
$dbman->add_field($table, $field);
241241
}
242-
upgrade_plugin_savepoint(true, 2016091402, plagiarism’, ‘turnitin);
242+
upgrade_plugin_savepoint(true, 2016091402, 'plagiarism', 'turnitin');
243243
}
244244

245245
if ($oldversion < 2017012601) {

version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @copyright 2012 iParadigms LLC
2020
*/
2121

22-
$plugin->version = 2019060601;
22+
$plugin->version = 2019062501;
2323
$plugin->release = "3.1+";
2424
$plugin->requires = 2016052300;
2525
$plugin->component = 'plagiarism_turnitin';

0 commit comments

Comments
 (0)