diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-29 13:35:27 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-29 13:35:27 -0400 |
commit | 1389e3b4dc7437b11fb3b0f22902b4dc946f2fc3 (patch) | |
tree | c9078a7bd40b5aa327e550955fedaa19d8f571b5 /actions/showstream.php | |
parent | fb3029d74e5552641d005079de422e762e7ac73b (diff) |
fix render in showstream
darcs-hash:20080529173527-84dde-968857bab4df3f26d8d135b00991838aa78210c0.gz
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index fdf3d33bd..8235d7c26 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -330,7 +330,7 @@ class ShowstreamAction extends StreamAction { $noticeurl = common_local_url('shownotice', array('notice' => $notice->id)); # FIXME: URL, image, video, audio common_element_start('span', array('class' => 'content')); - common_raw(common_render_content($notice->content)); + common_raw(common_render_content($notice->content, $notice)); common_element_end('span'); common_element('a', array('class' => 'notice', 'href' => $noticeurl), |