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

Update XHPast forms

Summary: Forms look like others, they do

Test Plan: Page reload, I see

Reviewers: epriestley

Reviewed By: epriestley

CC: Korvin, aran

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

+7 -7
+7 -7
src/applications/phpast/controller/PhabricatorXHPASTViewRunController.php
··· 43 43 id(new AphrontFormSubmitControl()) 44 44 ->setValue('Parse')); 45 45 46 - $panel = new AphrontPanelView(); 47 - $panel->setHeader('Generate XHP AST'); 48 - $panel->setWidth(AphrontPanelView::WIDTH_WIDE); 49 - $panel->appendChild($form); 46 + $form_box = id(new PHUIFormBoxView()) 47 + ->setHeaderText(pht('Generate XHP AST')) 48 + ->setForm($form); 50 49 51 - return $this->buildStandardPageResponse( 52 - $panel, 50 + return $this->buildApplicationPage( 51 + $form_box, 53 52 array( 54 - 'title' => 'XHPAST View', 53 + 'title' => pht('XHPAST View'), 54 + 'device' => true, 55 55 )); 56 56 } 57 57