getPref(); $tp = e107::getParser(); $num = intval(vartrue($menu_pref['online_ls_amount'], 10)); $sql->select("user", "user_id, user_name, user_currentvisit", "user_currentvisit != '0' ORDER BY user_currentvisit DESC LIMIT 0,".$num); $lslist = $sql->db_getList(); $text = $tp->parseTemplate($LASTSEEN_TEMPLATE['start'], true); foreach($lslist as $row) { // $online_shortcodes->setScVar('currentUser', $row); $online_shortcodes->currentUser = $row; $text .= $tp->parseTemplate($LASTSEEN_TEMPLATE['item'], true, $online_shortcodes); } $text .= $tp->parseTemplate($LASTSEEN_TEMPLATE['end'], true, $online_shortcodes); $caption = vartrue($menu_pref['online_ls_caption'], LAN_LASTSEEN_1); e107::getRender()->tablerender($caption, $text, 'lastseen');