Removed duplicated 'return '

This commit is contained in:
Juerg Rast 2012-07-28 01:11:03 +02:00
parent b080dd69fa
commit 4848becf5e

View File

@ -420,7 +420,7 @@ class FormField extends RequestHandler {
* Returns $this.
*/
function setValue($value) {
$this->value = $value; return $this;
$this->value = $value;
return $this;
}