Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge branch 'MDL-62588-33' of git://github.com/rezaies/moodle into M…
- Loading branch information
Showing
with
20 additions
and
2 deletions.
-
+19
−1
enrol/paypal/db/upgrade.php
-
+1
−1
enrol/paypal/version.php
|
@@ -43,7 +43,9 @@ |
|
|
defined('MOODLE_INTERNAL') || die(); |
|
|
|
|
|
function xmldb_enrol_paypal_upgrade($oldversion) { |
|
|
global $CFG; |
|
|
global $DB; |
|
|
|
|
|
$dbman = $DB->get_manager(); |
|
|
|
|
|
// Moodle v2.8.0 release upgrade line. |
|
|
// Put any upgrade step following this. |
|
@@ -63,5 +65,21 @@ function xmldb_enrol_paypal_upgrade($oldversion) { |
|
|
// Automatically generated Moodle v3.3.0 release upgrade line. |
|
|
// Put any upgrade step following this. |
|
|
|
|
|
if ($oldversion < 2017051501) { |
|
|
|
|
|
// Define field instanceid to be added to enrol_paypal. |
|
|
// For some reason, some Moodle instances that are upgraded from old versions do not have this field. |
|
|
$table = new xmldb_table('enrol_paypal'); |
|
|
$field = new xmldb_field('instanceid', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0', 'userid'); |
|
|
|
|
|
// Conditionally launch add field instanceid. |
|
|
if (!$dbman->field_exists($table, $field)) { |
|
|
$dbman->add_field($table, $field); |
|
|
} |
|
|
|
|
|
// Paypal savepoint reached. |
|
|
upgrade_plugin_savepoint(true, 2017051501, 'enrol', 'paypal'); |
|
|
} |
|
|
|
|
|
return true; |
|
|
} |
|
@@ -25,7 +25,7 @@ |
|
|
|
|
|
defined('MOODLE_INTERNAL') || die(); |
|
|
|
|
|
$plugin->version = 2017051500; // The current plugin version (Date: YYYYMMDDXX) |
|
|
$plugin->version = 2017051501; // The current plugin version (Date: YYYYMMDDXX) |
|
|
$plugin->requires = 2017050500; // Requires this Moodle version |
|
|
$plugin->component = 'enrol_paypal'; // Full name of the plugin (used for diagnostics) |
|
|
$plugin->cron = 60; |