1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-22 10:18:48 +02:00

Fix 'View Full Commit History' link to link to the history for the current branch rather than the default branch

This commit is contained in:
David Renie 2012-12-03 18:23:33 -08:00
parent 1536b8a19c
commit 98ee24bc10

View file

@ -62,7 +62,10 @@ final class DiffusionRepositoryController extends DiffusionController {
$all = phutil_render_tag( $all = phutil_render_tag(
'a', 'a',
array( array(
'href' => "/diffusion/{$callsign}/history/", 'href' => $drequest->generateURI(
array(
'action' => 'history',
)),
), ),
'View Full Commit History'); 'View Full Commit History');