mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
MDL-28250 license: upgrade old versions of cc-nc
The url was incorectly defined in previous versions
This commit is contained in:
parent
8243f3ebb5
commit
82198dec8b
@ -2139,5 +2139,26 @@ function xmldb_main_upgrade($oldversion) {
|
||||
upgrade_main_savepoint(true, 2013042300.00);
|
||||
}
|
||||
|
||||
if ($oldversion < 2013051400.01) {
|
||||
// Fix incorrect cc-nc url. Unfortunately the license 'plugins' do
|
||||
// not give a mechanism to do this.
|
||||
|
||||
$sql = "UPDATE {license}
|
||||
SET source = :url, version = :newversion
|
||||
WHERE shortname = :shortname AND version = :oldversion";
|
||||
|
||||
$params = array(
|
||||
'url' => 'http://creativecommons.org/licenses/by-nc/3.0/',
|
||||
'shortname' => 'cc-nc',
|
||||
'newversion' => '2013051500',
|
||||
'oldversion' => '2010033100'
|
||||
);
|
||||
|
||||
$DB->execute($sql, $params);
|
||||
|
||||
// Main savepoint reached.
|
||||
upgrade_main_savepoint(true, 2013051400.01);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$version = 2013051400.00; // 20130514 = branching date YYYYMMDD - do not modify!
|
||||
$version = 2013051400.01; // 20130514 = branching date YYYYMMDD - do not modify!
|
||||
// RR = release increments - 00 in DEV branches
|
||||
// .XX = incremental changes
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user