Skip to content

Commit 431a9e2

Browse files
committed
Bump minimist from 1.2.0 to 1.2.5 in /vue
Signed-off-by: Luca Bösch <luca.boesch@bfh.ch>
1 parent bab7b79 commit 431a9e2

File tree

4 files changed

+255
-241
lines changed

4 files changed

+255
-241
lines changed

db/install.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1051,8 +1051,8 @@ function xmldb_local_differentiator_install() {
10511051
'tswid' => 14,
10521052
'lang' => 'en',
10531053
'timecreated' => $time,
1054-
'tswetitle' => 'Discribe',
1055-
'tswetext' => 'discribe the',
1054+
'tswetitle' => 'Describe',
1055+
'tswetext' => 'describe the',
10561056
]);
10571057
$DB->insert_record('local_differentiator_tswe', [
10581058
'tswid' => 15,

db/upgrade.php

+14
Original file line numberDiff line numberDiff line change
@@ -5767,5 +5767,19 @@ function xmldb_local_differentiator_upgrade($oldversion = 0) {
57675767
// Plugin savepoint reached.
57685768
upgrade_plugin_savepoint(true, 2020020100, 'local', 'differentiator');
57695769
}
5770+
5771+
if ($oldversion < 2020040100) {
5772+
$time = time();
5773+
$tswe = $DB->get_record('local_differentiator_tswe', ['tswid' => 14, 'lang' => 'en']);
5774+
if (!empty($tswe)) {
5775+
$tswe->tswetitle = 'Describe';
5776+
$tswe->tswetext = 'describe the';
5777+
$tswe->timemodified = $time;
5778+
$DB->update_record('local_differentiator_tswe', $tswe);
5779+
}
5780+
5781+
// Plugin savepoint reached.
5782+
upgrade_plugin_savepoint(true, 2020040100, 'local', 'differentiator');
5783+
}
57705784
return true;
57715785
}

version.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
defined('MOODLE_INTERNAL') || die();
2626

2727
$plugin->component = 'local_differentiator';
28-
$plugin->release = '1.4.0';
29-
$plugin->version = 2020020100;
28+
$plugin->release = '1.4.1';
29+
$plugin->version = 2020040100;
3030
$plugin->requires = 2018051700;
3131
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)