@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Restore string cast for textarea control

Summary: Removed in 48561a8b but actually necessary.

Test Plan: Differential now renders textareas correctly.

Reviewers: vrana

Reviewed By: vrana

CC: aran

Differential Revision: https://secure.phabricator.com/D4643

+3 -1
+3 -1
src/view/form/control/AphrontFormTextAreaControl.php
··· 72 72 'id' => $this->getID(), 73 73 'placeholder' => $this->getPlaceHolder(), 74 74 ), 75 - $this->getValue()); 75 + // NOTE: This needs to be string cast, because if we pass `null` the 76 + // tag will be self-closed and some browsers aren't thrilled about that. 77 + (string)$this->getValue()); 76 78 } 77 79 78 80 }