diff --git a/src/view/form/control/AphrontFormTextAreaControl.php b/src/view/form/control/AphrontFormTextAreaControl.php index 311beaea8e..bd36122ee9 100644 --- a/src/view/form/control/AphrontFormTextAreaControl.php +++ b/src/view/form/control/AphrontFormTextAreaControl.php @@ -72,7 +72,9 @@ class AphrontFormTextAreaControl extends AphrontFormControl { 'id' => $this->getID(), 'placeholder' => $this->getPlaceHolder(), ), - $this->getValue()); + // NOTE: This needs to be string cast, because if we pass `null` the + // tag will be self-closed and some browsers aren't thrilled about that. + (string)$this->getValue()); } }