mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 01:32:42 +01:00
c9ab1fe505
Summary: This is pretty brutal and it adds some `phutil_safe_html()`. But it is a big step in the right direction. Test Plan: None. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2432 Differential Revision: https://secure.phabricator.com/D4905
9 lines
134 B
PHP
9 lines
134 B
PHP
<?php
|
|
|
|
final class AphrontNullView extends AphrontView {
|
|
|
|
public function render() {
|
|
return $this->renderHTMLChildren();
|
|
}
|
|
|
|
}
|