mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +01:00
Use javelin_tag(), not phutil_tag(), to render revision blame tooltips properly
Summary: Depends on D19310. Ref T13105. The "meta" value was not populating correctly because this used `phutil_tag()`. Test Plan: Will verify on `secure`. Maniphest Tasks: T13105 Differential Revision: https://secure.phabricator.com/D19311
This commit is contained in:
parent
11664277b3
commit
eca7dc25f2
1 changed files with 5 additions and 6 deletions
|
@ -158,7 +158,7 @@ final class DiffusionBlameController extends DiffusionController {
|
|||
);
|
||||
|
||||
if ($revision) {
|
||||
$revision_link = phutil_tag(
|
||||
$revision_link = javelin_tag(
|
||||
'a',
|
||||
array(
|
||||
'href' => $revision->getURI(),
|
||||
|
@ -171,7 +171,6 @@ final class DiffusionBlameController extends DiffusionController {
|
|||
),
|
||||
$revision->getMonogram());
|
||||
|
||||
|
||||
$info = array(
|
||||
$info,
|
||||
' / ',
|
||||
|
|
Loading…
Reference in a new issue