diff --git a/src/applications/diffusion/controller/DiffusionBrowseController.php b/src/applications/diffusion/controller/DiffusionBrowseController.php --- a/src/applications/diffusion/controller/DiffusionBrowseController.php +++ b/src/applications/diffusion/controller/DiffusionBrowseController.php @@ -157,7 +157,7 @@ ), $drequest->getRepository()->formatCommitName($stable_commit))); - if ($drequest->getCommitType() == 'tag') { + if ($drequest->getSymbolicType() == 'tag') { $symbolic = $drequest->getSymbolicCommit(); $view->addProperty(pht('Tag'), $symbolic); diff --git a/src/applications/diffusion/request/DiffusionRequest.php b/src/applications/diffusion/request/DiffusionRequest.php --- a/src/applications/diffusion/request/DiffusionRequest.php +++ b/src/applications/diffusion/request/DiffusionRequest.php @@ -16,11 +16,11 @@ protected $path; protected $line; protected $commit; - protected $commitType = 'commit'; protected $branch; protected $lint; protected $symbolicCommit; + protected $symbolicType; protected $stableCommit; protected $repository; @@ -244,6 +244,10 @@ return $this->symbolicCommit; } + public function getSymbolicType() { + return $this->symbolicType; + } + public function getBranch() { return $this->branch; } @@ -630,11 +634,7 @@ $match = head($matches); $this->commit = $match['identifier']; - $this->commitType = $match['type']; - } - - public function getCommitType() { - return $this->commitType; + $this->symbolicType = $match['type']; } private function queryStableCommit() {