@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 Celerity for handleRequest

Summary: Updates Celerity controllers

Test Plan: View Phabricator, change to high contrast, change to larger fonts. Everything seems ok?

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+5 -7
+5 -7
src/applications/celerity/controller/CelerityPhabricatorResourceController.php
··· 17 17 return CelerityResourceMap::getNamedInstance($this->library); 18 18 } 19 19 20 - public function willProcessRequest(array $data) { 21 - $this->path = $data['path']; 22 - $this->hash = $data['hash']; 23 - $this->library = $data['library']; 24 - $this->postprocessorKey = idx($data, 'postprocessor'); 25 - } 20 + public function handleRequest(AphrontRequest $request) { 21 + $this->path = $request->getURIData('path'); 22 + $this->hash = $request->getURIData('hash'); 23 + $this->library = $request->getURIData('library'); 24 + $this->postprocessorKey = $request->getURIData('postprocessor'); 26 25 27 - public function processRequest() { 28 26 // Check that the resource library exists before trying to serve resources 29 27 // from it. 30 28 try {