@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 double escaping in calendar

Test Plan: Used `<img` as status description.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T139

Differential Revision: https://secure.phabricator.com/D4276

vrana 1264e385 1c2e7e5d

+1 -1
+1 -1
src/applications/calendar/controller/PhabricatorCalendarBrowseController.php
··· 41 41 $event->setName("{$name_text} ({$status_text})"); 42 42 $details = ''; 43 43 if ($status->getDescription()) { 44 - $details = "\n\n".rtrim(phutil_escape_html($status->getDescription())); 44 + $details = "\n\n".rtrim($status->getDescription()); 45 45 } 46 46 $event->setDescription( 47 47 $status->getTerseSummary($user).$details