]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/shownotice.php
debugging request for access token
[quix0rs-gnu-social.git] / actions / shownotice.php
index 48e5861dd874c5b63230f926e607dcc90c8ddb9f..4bf4238cd44ecd9f8d1e9aa2458861aa1800811a 100644 (file)
@@ -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');