Skip to content

Commit

Permalink
Merge branch 'MDL-29239_m21' of git://github.com/rwijaya/moodle into …
Browse files Browse the repository at this point in the history
…MOODLE_21_STABLE
  • Loading branch information
Sam Hemelryk committed Dec 21, 2011
2 parents a2aa081 + 1928113 commit 50a1735
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion lib/form/editor.php
Expand Up @@ -58,7 +58,7 @@ function setValue($values) {
} }


function getValue() { function getValue() {
return $this->getAttribute('value'); return $this->_values;
} }


function getMaxbytes() { function getMaxbytes() {
Expand Down Expand Up @@ -276,4 +276,13 @@ function toHtml() {
return $str; return $str;
} }


/**
* What to display when element is frozen.
*
* @return empty string
*/
function getFrozenHtml() {

return '';
}
} }

0 comments on commit 50a1735

Please sign in to comment.