mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
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
This commit is contained in:
parent
fed0a2a496
commit
0779682694
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ final class DiffusionTagListController extends DiffusionController {
|
|||
'offset' => $pager->getOffset());
|
||||
if ($drequest->getRawCommit()) {
|
||||
$is_commit = true;
|
||||
$params['commit'] = $request->getCommit();
|
||||
$params['commit'] = $drequest->getRawCommit();
|
||||
} else {
|
||||
$is_commit = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue