]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/topposterssection.php
Top posters section markup and stye
[quix0rs-gnu-social.git] / lib / topposterssection.php
index 7a3d46aa5f43ab91b513be482310fc1f1f1aa741..4701ca83fbad2b3b10dde5536bd4149ed128f990 100644 (file)
@@ -71,7 +71,9 @@ class TopPostersSection extends ProfileSection
 
     function showProfile($profile)
     {
-        $this->out->elementStart('li', 'vcard');
+        $this->out->elementStart('tr');
+        $this->out->elementStart('td');
+        $this->out->elementStart('span', 'vcard');        
         $this->out->elementStart('a', array('title' => ($profile->fullname) ?
                                        $profile->fullname :
                                        $profile->nickname,
@@ -87,11 +89,14 @@ class TopPostersSection extends ProfileSection
                                     $profile->fullname :
                                     $profile->nickname));
         $this->out->element('span', 'fn nickname', $profile->nickname);
+        $this->out->elementEnd('span');        
         $this->out->elementEnd('a');
+        $this->out->elementEnd('td');
         if ($profile->value) {
-            $this->out->element('span', 'value', $profile->value);
+            $this->out->element('td', 'value', $profile->value);
         }
-        $this->out->elementEnd('li');
+
+        $this->out->elementEnd('tr');
     }
 
     function title()