X-Git-Url: https://git.cyclocoop.org/%242?a=blobdiff_plain;f=includes%2Fhtmlform%2Ffields%2FHTMLTextAreaField.php;h=82ec3bf201211788b0fd7dc5f8bcbb2eca42b0b9;hb=1dd2e07276e1deaf431ddb01c92111038f9e2cd6;hp=8ffff43888f7ad1093f0ee8fa0d661460c0d2570;hpb=17914cc990c375340b688900b7782f1d7d5339fc;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/htmlform/fields/HTMLTextAreaField.php b/includes/htmlform/fields/HTMLTextAreaField.php index 8ffff43888..82ec3bf201 100644 --- a/includes/htmlform/fields/HTMLTextAreaField.php +++ b/includes/htmlform/fields/HTMLTextAreaField.php @@ -22,15 +22,15 @@ class HTMLTextAreaField extends HTMLFormField { } } - function getCols() { + public function getCols() { return isset( $this->mParams['cols'] ) ? $this->mParams['cols'] : static::DEFAULT_COLS; } - function getRows() { + public function getRows() { return isset( $this->mParams['rows'] ) ? $this->mParams['rows'] : static::DEFAULT_ROWS; } - function getSpellCheck() { + public function getSpellCheck() { $val = isset( $this->mParams['spellcheck'] ) ? $this->mParams['spellcheck'] : null; if ( is_bool( $val ) ) { // "spellcheck" attribute literally requires "true" or "false" to work. @@ -39,7 +39,7 @@ class HTMLTextAreaField extends HTMLFormField { return null; } - function getInputHTML( $value ) { + public function getInputHTML( $value ) { $attribs = [ 'id' => $this->mID, 'cols' => $this->getCols(),