1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-23 14:00:56 +01:00

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
This commit is contained in:
epriestley 2013-02-14 13:09:47 -08:00
parent 176ee9a889
commit f5aa92ecda

View file

@ -75,7 +75,7 @@ final class PhameBasicTemplateBlogSkin extends PhameBasicBlogSkin {
require $this->getPath($__template__); require $this->getPath($__template__);
} }
return ob_get_clean(); return phutil_safe_html(ob_get_clean());
} }
private function getDefaultScope() { private function getDefaultScope() {