Merge branch 'MDL-57342-36' of git://github.com/Chocolate-lightning/moodle into MOODLE_36_STABLE

This commit is contained in:
Eloy Lafuente (stronk7)
2019-07-31 18:56:44 +02:00
3 changed files with 26 additions and 1 deletions
+13
View File
@@ -2433,6 +2433,19 @@ class admin_setting_confightmleditor extends admin_setting_configtextarea {
$editor->use_editor($this->get_id(), array('noclean'=>true));
return parent::output_html($data, $query);
}
/**
* Checks if data has empty html.
*
* @param string $data
* @return string Empty when no errors.
*/
public function write_setting($data) {
if (trim(html_to_text($data)) === '') {
$data = '';
}
return parent::write_setting($data);
}
}
+12
View File
@@ -3078,5 +3078,17 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2018120303.16);
}
if ($oldversion < 2018120305.04) {
// Update the empty tag instructions to null.
$instructions = get_config('core', 'auth_instructions');
if (trim(html_to_text($instructions)) === '') {
set_config('auth_instructions', '');
}
// Main savepoint reached.
upgrade_main_savepoint(true, 2018120305.04);
}
return true;
}
+1 -1
View File
@@ -29,7 +29,7 @@
defined('MOODLE_INTERNAL') || die();
$version = 2018120305.03; // 20181203 = branching date YYYYMMDD - do not modify!
$version = 2018120305.04; // 20181203 = branching date YYYYMMDD - do not modify!
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.