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:
parent
176ee9a889
commit
f5aa92ecda
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||||
|
|
Loading…
Reference in a new issue