Skip to content

Commit 96034f4

Browse files
authored
Merge pull request #565 from turnitin/develop
Release 2020113001
2 parents cf3952c + 9ca796e commit 96034f4

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
### Date: 2020-November-30
2+
### Release: 2020113001
3+
4+
#### :wrench: Fixes and enhancements
5+
6+
Hotfix - removed update to config_hash field
7+
8+
---
9+
110
### Date: 2020-November-26
211
### Release: 2020112601
312

db/upgrade.php

-7
Original file line numberDiff line numberDiff line change
@@ -460,13 +460,6 @@ function xmldb_plagiarism_turnitin_upgrade($oldversion) {
460460
$dbman->change_field_default($table, $field);
461461
}
462462

463-
// Set config_hash to correct length
464-
$table = new xmldb_table('plagiarism_turnitin_config');
465-
$field = new xmldb_field('config_hash', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, false, null, 'value');
466-
if ($dbman->field_exists($table, $field)) {
467-
$dbman->change_field_precision($table, $field);
468-
}
469-
470463
// Set turnitin_uid to allow null
471464
$field = new xmldb_field('turnitin_uid', XMLDB_TYPE_INTEGER, '10', null, false, false, null, 'userid');
472465
if ($dbman->field_exists($table, $field)) {

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 = 2020112601;
22+
$plugin->version = 2020113001;
2323
$plugin->release = "3.5+";
2424
$plugin->requires = 2018051700;
2525
$plugin->component = 'plagiarism_turnitin';

0 commit comments

Comments
 (0)