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

Creating subtask in Maniphest also implies template from parent

Summary:
Refs T2598 (or should it fix)

If no template was specified, and we are creating a subtask of a task, we can safely assume that we
can take the parent as a template. Copy Projects, CCs and the like (even the guy assigned to).

Test Plan:
Only in my imagination.

Jk, I'm currently on Windows, and it always gives 404s (without chrome), so I can't test. I'll switch over to Ubuntu later today to test this.

I'm confident that this works, though.

Reviewers: epriestley

CC: hfcorriez, aran, Korvin

Maniphest Tasks: T2598

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

authored by

Anh Nhan Nguyen and committed by
epriestley
a01a799c 16c562ba

+3
+3
src/applications/maniphest/controller/ManiphestTaskEditController.php
··· 63 63 $parent_id = $request->getInt('parent'); 64 64 if ($parent_id) { 65 65 $parent_task = id(new ManiphestTask())->load($parent_id); 66 + if (!$template_id) { 67 + $template_id = $parent_id; 68 + } 66 69 } 67 70 } 68 71