1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00

Convert phutil_render_tag(X, Y, phutil_render_tag(...)) to phutil_render_html

Summary:
Created with spatch:

  lang=diff
  - phutil_render_tag
  + phutil_render_html
    (X, Y, phutil_render_tag(...))

  - phutil_render_tag
  + phutil_render_html
    (X, Y, phutil_render_html(...))

Test Plan: Loaded homepage

Reviewers: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D4502
This commit is contained in:
vrana 2013-01-17 18:47:13 -08:00
parent 3c1b8df8ae
commit 9670f0c636
10 changed files with 13 additions and 13 deletions

View file

@ -137,7 +137,7 @@ final class PhabricatorConfigEditController
array(
'class' => 'phabricator-remarkup',
),
$engine->getOutput($option, 'description'));
phutil_safe_html($engine->getOutput($option, 'description')));
$form
->setUser($user)

View file

@ -337,7 +337,7 @@ final class DifferentialChangesetTwoUpRenderer
$vs = 0) {
$old = null;
if ($old_file) {
$old = phutil_render_tag(
$old = phutil_tag(
'div',
array(
'class' => 'differential-image-stage'
@ -353,7 +353,7 @@ final class DifferentialChangesetTwoUpRenderer
$new = null;
if ($new_file) {
$new = phutil_render_tag(
$new = phutil_tag(
'div',
array(
'class' => 'differential-image-stage'

View file

@ -70,7 +70,7 @@ final class PhamePostPublishController extends PhameController {
// TODO: Clean up this CSS.
return phutil_render_tag(
return phutil_tag(
'div',
array(
'style' => 'text-align: center; padding: 1em;',

View file

@ -59,7 +59,7 @@ final class PhamePostView extends AphrontView {
public function renderTitle() {
$href = $this->getSkin()->getURI('post/'.$this->getPost()->getPhameTitle());
return phutil_render_tag(
return phutil_tag(
'h2',
array(
'class' => 'phame-post-title',

View file

@ -401,7 +401,7 @@ final class PhabricatorSlowvotePollController
$profile_image = $handle->getImageURI();
$user_markup[] = phutil_render_tag(
$user_markup[] = phutil_tag(
'a',
array(
'href' => $handle->getURI(),

View file

@ -47,7 +47,7 @@ final class PhabricatorHeaderView extends AphrontView {
self::renderSingleView($this->tags));
}
return phutil_render_tag(
return phutil_tag(
'div',
array(
'class' => 'phabricator-header-shell',

View file

@ -42,7 +42,7 @@ final class PhabricatorPinboardItemView extends AphrontView {
$header);
}
$image = phutil_render_tag(
$image = phutil_tag(
'a',
array(
'href' => $this->uri,

View file

@ -66,17 +66,17 @@ final class PhabricatorSourceCodeView extends AphrontView {
$classes[] = 'remarkup-code';
$classes[] = 'PhabricatorMonospaced';
return phutil_render_tag(
return phutil_tag(
'div',
array(
'class' => 'phabricator-source-code-container',
),
phutil_render_tag(
phutil_tag(
'table',
array(
'class' => implode(' ', $classes),
),
implode('', $rows)));
new PhutilSafeHTML(implode('', $rows))));
}
}

View file

@ -117,7 +117,7 @@ final class PhabricatorTimelineEventView extends AphrontView {
if ($this->icon) {
$title_classes[] = 'phabricator-timeline-title-with-icon';
$icon = phutil_render_tag(
$icon = phutil_tag(
'span',
array(
'class' => 'phabricator-timeline-icon-fill',

View file

@ -271,7 +271,7 @@ final class PhabricatorMainMenuView extends AphrontView {
}
private function renderPhabricatorLogo() {
return phutil_render_tag(
return phutil_tag(
'a',
array(
'class' => 'phabricator-main-menu-logo',