Differential D14665 Diff 35488 src/applications/maniphest/controller/ManiphestTaskDetailController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/maniphest/controller/ManiphestTaskDetailController.php
| Show First 20 Lines • Show All 137 Lines • ▼ Show 20 Lines | public function handleRequest(AphrontRequest $request) { | ||||
| } | } | ||||
| $title = pht('%s %s', $monogram, $task->getTitle()); | $title = pht('%s %s', $monogram, $task->getTitle()); | ||||
| $comment_view = id(new ManiphestEditEngine()) | $comment_view = id(new ManiphestEditEngine()) | ||||
| ->setViewer($viewer) | ->setViewer($viewer) | ||||
| ->buildEditEngineCommentView($task); | ->buildEditEngineCommentView($task); | ||||
| $timeline->setQuoteRef($monogram); | |||||
| $comment_view->setTransactionTimeline($timeline); | |||||
| return $this->newPage() | return $this->newPage() | ||||
| ->setTitle($title) | ->setTitle($title) | ||||
| ->setCrumbs($crumbs) | ->setCrumbs($crumbs) | ||||
| ->setPageObjectPHIDs( | ->setPageObjectPHIDs( | ||||
| array( | array( | ||||
| $task->getPHID(), | $task->getPHID(), | ||||
| )) | )) | ||||
| ->appendChild( | ->appendChild( | ||||
| ▲ Show 20 Lines • Show All 228 Lines • Show Last 20 Lines | |||||