Merge branch 'MDL-29239_m22' of git://github.com/rwijaya/moodle into MOODLE_22_STABLE

This commit is contained in:
Sam Hemelryk
2011-12-21 15:00:41 +13:00
+10 -1
View File
@@ -58,7 +58,7 @@ class MoodleQuickForm_editor extends HTML_QuickForm_element {
}
function getValue() {
return $this->getAttribute('value');
return $this->_values;
}
function getMaxbytes() {
@@ -276,4 +276,13 @@ class MoodleQuickForm_editor extends HTML_QuickForm_element {
return $str;
}
/**
* What to display when element is frozen.
*
* @return empty string
*/
function getFrozenHtml() {
return '';
}
}