MDL-36597 strip '_utf8' from all course.lang fields

This commit is contained in:
Petr Škoda
2012-12-15 11:18:59 +01:00
parent 7d2c5cd0a0
commit fb5d7df075
2 changed files with 15 additions and 1 deletions
+14
View File
@@ -985,5 +985,19 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2012062502.07);
}
if ($oldversion < 2012062503.07) {
// Remove "_utf8" suffix from all langs in course table.
$langs = $DB->get_records_sql("SELECT DISTINCT lang FROM {course} WHERE lang LIKE ?", array('%_utf8'));
foreach ($langs as $lang=>$unused) {
$newlang = str_replace('_utf8', '', $lang);
$sql = "UPDATE {course} SET lang = :newlang WHERE lang = :lang";
$DB->execute($sql, array('newlang'=>$newlang, 'lang'=>$lang));
}
// Main savepoint reached.
upgrade_main_savepoint(true, 2012062503.07);
}
return true;
}
+1 -1
View File
@@ -30,7 +30,7 @@
defined('MOODLE_INTERNAL') || die();
$version = 2012062503.06; // YYYYMMDD = weekly release date of this DEV branch
$version = 2012062503.07; // YYYYMMDD = weekly release date of this DEV branch
// RR = release increments - 00 in DEV branches
// .XX = incremental changes