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

Fix bad variable causing `aphlict` to fail to start with no "logs" config

Summary: Fixes T10863. See that task for discussion.

Test Plan:
- Configured `aphlict` with no "logs".
- Started `aphlict`.
- Before change: exception.
- After change: worked.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10863

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

+1 -1
+1 -1
src/applications/aphlict/management/PhabricatorAphlictManagementWorkflow.php
··· 274 274 275 275 $pid_path = $this->getPIDPath(); 276 276 try { 277 - $dir = dirname($path); 277 + $dir = dirname($pid_path); 278 278 if (!Filesystem::pathExists($dir)) { 279 279 Filesystem::createDirectory($dir, 0755, true); 280 280 }