mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
MDL-51179 Atto: Extend autosave fix to cover text changes
Added new functions to editor api - set/get_text so the original form text can be determined from an editor. When calling use_editor() you should first call set_text() with the text that will be inserted in the form element. There is also a new scheduled task for cleaning Atto autosave drafts.
This commit is contained in:
parent
6f0dfdd969
commit
988592c556
15 changed files with 162 additions and 3 deletions
|
@ -377,6 +377,7 @@ class MoodleQuickForm_editor extends HTML_QuickForm_element {
|
|||
}
|
||||
|
||||
// print text area - TODO: add on-the-fly switching, size configuration, etc.
|
||||
$editor->set_text($text);
|
||||
$editor->use_editor($id, $this->_options, $fpoptions);
|
||||
|
||||
$rows = empty($this->_attributes['rows']) ? 15 : $this->_attributes['rows'];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue