diff --git a/forms/HtmlEditorField.php b/forms/HtmlEditorField.php
index b63e9e8f2..15df12fef 100755
--- a/forms/HtmlEditorField.php
+++ b/forms/HtmlEditorField.php
@@ -15,7 +15,7 @@ class HtmlEditorField extends TextareaField {
/**
* Construct a new HtmlEditor field
*/
- function __construct($name, $title = "", $rows = 20, $cols = 20, $value = "", $form = null) {
+ function __construct($name, $title = null, $rows = 20, $cols = 20, $value = "", $form = null) {
parent::__construct($name, $title, $rows, $cols, $value, $form);
$this->extraClass = 'typography';
}