@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
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix config transaction rendering error on auth page by allowing PhutilSafeHTML

Summary: Closes T15706

Test Plan: Checked that the page worked as expected with changes implemented

Reviewers: O1 Blessed Committers, speck, valerio.bozzolan

Reviewed By: O1 Blessed Committers, speck, valerio.bozzolan

Subscribers: sirocyl, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15706

Differential Revision: https://we.phorge.it/D25512

authored by

Mark Jervelund and committed by
Valerio Bozzolan
b445e1d8 a7fb04f9

+1 -1
+1 -1
src/applications/auth/storage/PhabricatorAuthProviderConfigTransaction.php
··· 150 150 $provider = $this->getProvider(); 151 151 if ($provider) { 152 152 $title = $provider->renderConfigPropertyTransactionTitle($this); 153 - if (phutil_nonempty_string($title)) { 153 + if (phutil_nonempty_stringlike($title)) { 154 154 return $title; 155 155 } 156 156 }