X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fshownotice.php;h=4bf4238cd44ecd9f8d1e9aa2458861aa1800811a;hb=9136d18327f2075797aecff1e3ccec0c3e11e928;hp=48e5861dd874c5b63230f926e607dcc90c8ddb9f;hpb=52600ce0b063e68e622b19699841e41b5ddbf2d1;p=quix0rs-gnu-social.git diff --git a/actions/shownotice.php b/actions/shownotice.php index 48e5861dd8..4bf4238cd4 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -50,7 +50,7 @@ class ShownoticeAction extends Action { function show_notice($notice) { $profile = $notice->getProfile(); # XXX: RDFa - common_element_start('div', array('class' => 'notice')); + common_element_start('div', array('class' => 'notice greenBg')); $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); if ($avatar) { common_element('img', array('src' => $avatar->url, @@ -68,8 +68,9 @@ class ShownoticeAction extends Action { $profile->nickname), $profile->nickname); # FIXME: URL, image, video, audio - common_element('span', array('class' => 'content'), - $notice->content); + common_element_start('span', array('class' => 'content')); + common_raw(common_render_content($notice->content, $notice)); + common_element_end('span'); common_element('span', array('class' => 'date'), common_date_string($notice->created)); common_element_end('div');