Topic: Members Marquee above Activity Feed
i am trying to add members marquee 
what i have done is that i have defined in controller dashboard.php
//marquee
$D->mq1 = array();
$r = $db2->query('SELECT * FROM `users` ORDER BY `users`.`num_posts` DESC LIMIT 0 , 20');
while($o = $db2->fetch_object($r)) {
$D->mq1[] = $this->network->get_user_by_id($o->id);
}
$D->mq1 = array_slice($D->mq1, 0, $num);
//end marqueeand in theme folder dashboard.php
<marquee><?php foreach($D->mq1 as $u) { ?>
<a href="<?= userlink($u->username) ?>" class="slimuser" title="<?= htmlspecialchars($u->username) ?>"><img src="<?= $C->IMG_URL ?>avatars/thumbs1/<?= $u->avatar ?>" alt="" style="padding:3px;" /></a>
<?php } ?></marquee>now if i do samething with home.php i can display as more as i want to display but if in dashboard not more then 12
please someone take a look and help me in that
