@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.

Add a `setEncType` method to AphrontDialogView.

Summary: Fixes a Conpherence fatal when going to /conpherence/update/1

Test Plan: Successfully rendered the edit form and saved it.

Reviewers: epriestley, btrahan

Reviewed By: btrahan

CC: aran, Korvin

Maniphest Tasks: T2402

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

authored by

Ricky Elrod and committed by
epriestley
78eee0af 184be964

-2
-1
src/applications/conpherence/controller/ConpherenceUpdateController.php
··· 207 207 ->setTitle(pht('Update Conpherence')) 208 208 ->setWidth(AphrontDialogView::WIDTH_FORM) 209 209 ->setSubmitURI($this->getApplicationURI('update/'.$conpherence_id.'/')) 210 - ->setEncType('multipart/form-data') 211 210 ->addHiddenInput('action', 'metadata') 212 211 ->appendChild($form) 213 212 ->addSubmitButton()
-1
src/view/AphrontDialogView.php
··· 128 128 'action' => $this->submitURI, 129 129 'method' => 'post', 130 130 'id' => $this->formID, 131 - 'enctype' => $this->encType, 132 131 ); 133 132 134 133 $hidden_inputs = array();