diff options
author | Robin Millette <millette@plantard.controlezvous.ca> | 2009-01-22 20:49:45 +0000 |
---|---|---|
committer | Robin Millette <millette@plantard.controlezvous.ca> | 2009-01-22 20:49:45 +0000 |
commit | e33d80fe9dd4cd6e7e913157361311757a3265a3 (patch) | |
tree | 85cb0d20b7730c4d1b9bf88e2b06ceed166ee455 /lib/topposterssection.php | |
parent | 0c7176b603dc91585449883d02dc0e3c3ad74244 (diff) | |
parent | 4f58dbf55718133eadcb4b18b72a70504b31defa (diff) |
Merge branch 'master' of /var/www/trunk
Diffstat (limited to 'lib/topposterssection.php')
-rw-r--r-- | lib/topposterssection.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/topposterssection.php b/lib/topposterssection.php index 7a3d46aa5..4701ca83f 100644 --- a/lib/topposterssection.php +++ b/lib/topposterssection.php @@ -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() |