diff --git a/src/aphront/console/DarkConsoleCore.php b/src/aphront/console/DarkConsoleCore.php
index 3a886a7a80..2a60c24bd1 100644
--- a/src/aphront/console/DarkConsoleCore.php
+++ b/src/aphront/console/DarkConsoleCore.php
@@ -97,7 +97,7 @@ final class DarkConsoleCore {
$tabclass = null;
}
- $tabs_markup[] = javelin_render_tag(
+ $tabs_markup[] = javelin_tag(
'a',
array(
'class' => "dark-console-tab {$tabclass}",
@@ -173,7 +173,7 @@ final class DarkConsoleCore {
),
'
| '.
@@ -256,7 +254,7 @@ final class DifferentialDiffTableOfContentsView extends AphrontView {
private function renderChangesetLink(DifferentialChangeset $changeset, $ref) {
$display_file = $changeset->getDisplayFilename();
- return javelin_render_tag(
+ return javelin_tag(
'a',
array(
'href' => '#'.$changeset->getAnchorName(),
@@ -266,7 +264,7 @@ final class DifferentialDiffTableOfContentsView extends AphrontView {
),
'sigil' => 'differential-load',
),
- phutil_escape_html($display_file));
+ $display_file);
}
}
diff --git a/src/applications/differential/view/DifferentialInlineCommentEditView.php b/src/applications/differential/view/DifferentialInlineCommentEditView.php
index 86a2706ce6..9471325c34 100644
--- a/src/applications/differential/view/DifferentialInlineCommentEditView.php
+++ b/src/applications/differential/view/DifferentialInlineCommentEditView.php
@@ -94,7 +94,7 @@ final class DifferentialInlineCommentEditView extends AphrontView {
$buttons = array();
$buttons[] = '';
- $buttons[] = javelin_render_tag(
+ $buttons[] = javelin_tag(
'button',
array(
'sigil' => 'inline-edit-cancel',
diff --git a/src/applications/differential/view/DifferentialInlineCommentView.php b/src/applications/differential/view/DifferentialInlineCommentView.php
index 09ac5a906b..0340d3287a 100644
--- a/src/applications/differential/view/DifferentialInlineCommentView.php
+++ b/src/applications/differential/view/DifferentialInlineCommentView.php
@@ -95,7 +95,7 @@ final class DifferentialInlineCommentView extends AphrontView {
}
if (!$this->preview) {
- $links[] = javelin_render_tag(
+ $links[] = javelin_tag(
'a',
array(
'href' => '#',
@@ -104,7 +104,7 @@ final class DifferentialInlineCommentView extends AphrontView {
),
pht('Previous'));
- $links[] = javelin_render_tag(
+ $links[] = javelin_tag(
'a',
array(
'href' => '#',
@@ -122,7 +122,7 @@ final class DifferentialInlineCommentView extends AphrontView {
// file/line information, and synthetic comments don't have an inline
// comment ID.
- $links[] = javelin_render_tag(
+ $links[] = javelin_tag(
'a',
array(
'href' => '#',
@@ -138,7 +138,7 @@ final class DifferentialInlineCommentView extends AphrontView {
$anchor_name = 'inline-'.$inline->getID();
if ($this->editable && !$this->preview) {
- $links[] = javelin_render_tag(
+ $links[] = javelin_tag(
'a',
array(
'href' => '#',
@@ -146,7 +146,7 @@ final class DifferentialInlineCommentView extends AphrontView {
'sigil' => 'differential-inline-edit',
),
pht('Edit'));
- $links[] = javelin_render_tag(
+ $links[] = javelin_tag(
'a',
array(
'href' => '#',
@@ -155,7 +155,7 @@ final class DifferentialInlineCommentView extends AphrontView {
),
pht('Delete'));
} else if ($this->preview) {
- $links[] = javelin_render_tag(
+ $links[] = javelin_tag(
'a',
array(
'meta' => array(
@@ -164,7 +164,7 @@ final class DifferentialInlineCommentView extends AphrontView {
'sigil' => 'differential-inline-preview-jump',
),
pht('Not Visible'));
- $links[] = javelin_render_tag(
+ $links[] = javelin_tag(
'a',
array(
'href' => '#',
diff --git a/src/applications/differential/view/DifferentialRevisionCommentListView.php b/src/applications/differential/view/DifferentialRevisionCommentListView.php
index 48d085a75d..8edeaeea81 100644
--- a/src/applications/differential/view/DifferentialRevisionCommentListView.php
+++ b/src/applications/differential/view/DifferentialRevisionCommentListView.php
@@ -166,7 +166,7 @@ final class DifferentialRevisionCommentListView extends AphrontView {
),
' |