diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 21:41:52 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 21:41:52 +0000 |
commit | 56b6164fa4bde1bbeb8e83bfa2870944d6de5900 (patch) | |
tree | 31258c41187206ee6b122ec9489508f6e29821b6 /lib/profilesection.php | |
parent | 6472630f92c65de6eb69162d1252e797cc822047 (diff) |
Move table-based profile section layout from topposter to base class
Diffstat (limited to 'lib/profilesection.php')
-rw-r--r-- | lib/profilesection.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/profilesection.php b/lib/profilesection.php index 91a3dfa34..3642ae164 100644 --- a/lib/profilesection.php +++ b/lib/profilesection.php @@ -76,7 +76,9 @@ class ProfileSection extends Section 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, @@ -92,10 +94,13 @@ class ProfileSection extends Section $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'); } } |