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

Diffusion - fix a bug from T2784 (D5894 to be more specific)

Summary: Fixes T3314. Now you can view the tags for a specific commit.

Test Plan: visited http://phabricator.dev/diffusion/P/tags/master/;9b5f0aa03a5ffc93d5f4fce83fef5efb435097cc and saw a nice, 'no tags' paged. Then I tagged the commit, did a git pull, and reloaded. On reload, the page showed a tag.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T3314

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

+1 -1
+1 -1
src/applications/diffusion/controller/DiffusionTagListController.php
··· 18 18 'offset' => $pager->getOffset()); 19 19 if ($drequest->getRawCommit()) { 20 20 $is_commit = true; 21 - $params['commit'] = $request->getCommit(); 21 + $params['commit'] = $drequest->getRawCommit(); 22 22 } else { 23 23 $is_commit = false; 24 24 }