@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 Phame escaping issue

Summary: Fixes blog.phacility.com, etc. There's bascially no plausible way we can do better here, especially once we get the Wordpress "API" up and running.

Test Plan: patched secure.phabricator.com live

Reviewers: vrana

Reviewed By: vrana

CC: aran

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

+1 -1
+1 -1
src/applications/phame/skins/PhameBasicTemplateBlogSkin.php
··· 75 75 require $this->getPath($__template__); 76 76 } 77 77 78 - return ob_get_clean(); 78 + return phutil_safe_html(ob_get_clean()); 79 79 } 80 80 81 81 private function getDefaultScope() {