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

Save disk space

Summary: so many bytes saved

Test Plan:
http://local.aphront.com:8080/maniphest/view/custom/?tasks=12,14
http://local.aphront.com:8080/maniphest/view/custom/?tasks=~

Reviewers: vrana

Reviewed By: vrana

CC: aran, AnhNhan

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

+1 -1
+1 -1
src/applications/maniphest/controller/ManiphestTaskListController.php
··· 731 731 $numeric_task_ids = array(); 732 732 733 733 foreach ($task_ids as $task_id) { 734 - $task_id = preg_replace('/[^\d]+/', '', $task_id); 734 + $task_id = preg_replace('/\D+/', '', $task_id); 735 735 if (!empty($task_id)) { 736 736 $numeric_task_ids[] = $task_id; 737 737 }