Select the types of activity you want to include in your feed.
@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
···5151 'invalid or out of date. Make sure you are copy-and-pasting the '.
5252 'entire link into your browser. You can try again, or request '.
5353 'a new email.')));
5454- $view->appendChild(hsprintf(
5555- '<div class="aphront-failure-continue">'.
5656- '<a class="button" href="/login/email/">%s</a>'.
5757- '</div>',
5858- pht('Send Another Email')));
5454+ $view->appendChild(phutil_tag_div(
5555+ 'aphront-failure-continue',
5656+ phutil_tag(
5757+ 'a',
5858+ array('class' => 'button', 'href' => '/login/email/'),
5959+ pht('Send Another Email'))));
59606061 return $this->buildStandardPageResponse(
6162 $view,
···4848 $error_view->appendChild(phutil_tag('p', array(), pht(
4949 'If you did not receive an email, you can click the button below '.
5050 'to try sending another one.')));
5151- $error_view->appendChild(hsprintf(
5252- '<div class="aphront-failure-continue">%s</div>',
5151+ $error_view->appendChild(phutil_tag_div(
5252+ 'aphront-failure-continue',
5353 phabricator_form(
5454 $user,
5555 array(
···8484 "improves security by preventing an attacker from capturing ".
8585 "an insecure Facebook session and escalating it into a ".
8686 "Phabricator session. Enabling it is recommended.",
8787- hsprintf(
8888- '<strong>%s</strong>',
8989- pht('Require Secure Browsing:')))));
8787+ phutil_tag('strong', array(), pht('Require Secure Browsing:')))));
9088 }
91899290 public function renderConfigPropertyTransactionTitle(
···123123 }
124124125125 protected function render404Page() {
126126- return hsprintf('<h2>404 Not Found</h2>');
126126+ return phutil_tag('h2', array(), pht('404 Not Found'));
127127 }
128128129129 final public function getResourceURI($resource) {