X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fshowstream.php;h=7e887a9d9ec00dd07698b792dc21d7863d8d06f8;hb=7352cab8ee8dd37c76ac2492695cc4c347d9564c;hp=b4844aabd4d41c5a180cfbcad1106b2bfd2d8a38;hpb=b86a51ec8afff2181867823f8330a8bf3e267cf7;p=quix0rs-gnu-social.git diff --git a/actions/showstream.php b/actions/showstream.php index b4844aabd4..7e887a9d9e 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -101,13 +101,14 @@ class ShowstreamAction extends StreamAction { 'alt' => $profile->nickname)); } if ($profile->fullname) { + common_element_start('div', 'fullname'); if ($profile->homepage) { - common_element('a', array('href' => $profile->homepage, - 'class' => 'fullname'), + common_element('a', array('href' => $profile->homepage), $profile->fullname); } else { - common_element('div', 'fullname', $profile->fullname); + common_text($profile->fullname); } + common_element_end('div'); } if ($profile->location) { common_element('div', 'location', $profile->location);