@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 $type property to PhabricatorTypeaheadCommonDatasourceController

Summary: Fix an implicit property.

Test Plan: No more `[11-Oct-2012 14:44:26] WARNING: [pool www] child 72785 said into stderr: "NOTICE: PHP message: [2012-10-11 14:44:26] PHLOG: Wrote to undeclared property PhabricatorTypeaheadCommonDatasourceController::$type. at [/INSECURE/devtools/phabricator/src/aphront/AphrontController.php:65]"`

Reviewers: vrana, btrahan

Reviewed By: vrana

CC: aran

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

+2
+2
src/applications/typeahead/controller/PhabricatorTypeaheadCommonDatasourceController.php
··· 19 19 final class PhabricatorTypeaheadCommonDatasourceController 20 20 extends PhabricatorTypeaheadDatasourceController { 21 21 22 + private $type; 23 + 22 24 public function willProcessRequest(array $data) { 23 25 $this->type = $data['type']; 24 26 }