1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-10 23:01:04 +01:00

Fix Back to HEAD link

Summary: I missed an anchor tag here, adds it back

Test Plan: View blame, click a previous version of the file, click Back to HEAD link.

Reviewers: epriestley

Reviewed By: epriestley

Spies: Korvin

Differential Revision: https://secure.phabricator.com/D18451
This commit is contained in:
Chad Little 2017-08-21 18:47:27 -07:00
parent ac91ab1ef9
commit 8c4f5aba33

View file

@ -1601,6 +1601,7 @@ final class DiffusionBrowseController extends DiffusionController {
$head = null;
if ($behind_head) {
$head = id(new PHUIButtonView())
->setTag('a')
->setText(pht('Back to HEAD'))
->setHref($head_uri)
->setIcon('fa-home')