summaryrefslogtreecommitdiff
path: root/lib/profilesection.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-22 20:46:55 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-22 20:46:55 +0000
commit4f58dbf55718133eadcb4b18b72a70504b31defa (patch)
tree16b608d22b9d38a3e808a20f823b4235d08482b4 /lib/profilesection.php
parent4e7192579ab0a1e3114d6f599495e3a54e1c397c (diff)
parent0e694023941431706ae87770612763cd74132ef1 (diff)
Merge branch 'master' of /var/www/trunk
Diffstat (limited to 'lib/profilesection.php')
-rw-r--r--lib/profilesection.php8
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);
}