diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 20:46:55 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 20:46:55 +0000 |
commit | 4f58dbf55718133eadcb4b18b72a70504b31defa (patch) | |
tree | 16b608d22b9d38a3e808a20f823b4235d08482b4 /lib/profilesection.php | |
parent | 4e7192579ab0a1e3114d6f599495e3a54e1c397c (diff) | |
parent | 0e694023941431706ae87770612763cd74132ef1 (diff) |
Merge branch 'master' of /var/www/trunk
Diffstat (limited to 'lib/profilesection.php')
-rw-r--r-- | lib/profilesection.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/profilesection.php b/lib/profilesection.php index 14068b082..91a3dfa34 100644 --- a/lib/profilesection.php +++ b/lib/profilesection.php @@ -58,13 +58,13 @@ class ProfileSection extends Section $cnt = 0; - $this->out->elementStart('ul', 'entities users xoxo'); - + $this->out->elementStart('table'); + $this->out->elementStart('tbody'); while ($profiles->fetch() && ++$cnt <= PROFILES_PER_SECTION) { $this->showProfile($profiles); } - - $this->out->elementEnd('ul'); + $this->out->elementEnd('tbody'); + $this->out->elementEnd('table'); return ($cnt > PROFILES_PER_SECTION); } |