Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mstdokumaci committed May 18, 2012
1 parent 50b109b commit b11d50d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sample/social/list.php
Expand Up @@ -48,7 +48,7 @@
}

echo '<h1>Top 10 Users with Most Posts</h1>' . "\n";
echo '<ul>\' . "\n';
echo '<ul>' . "\n";
foreach ($adb->id_list('user', false, 'post DESC', 10) as $id) {
$user=$adb->load($id);
echo '<li>' . $user['name'] . '(' . count($user['post']) . ')</li>' . "\n";
Expand Down

0 comments on commit b11d50d

Please sign in to comment.