--------------- Added [DATE]1452962816[/DATE] at [TIME]1452962816[/TIME] ---------------
Here's a version that will show complete posts within a scrollable element, and if you have my acronym and username markup products installed, it will parse those as well:
PHP Code:
global $vbulletin, $db;
require_once('./includes/functions_user.php'); require_once(DIR . '/includes/class_bbcode.php'); $bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
$number_of_posts = 10;
$output = '<ul class="restore">';
$recent_posts = $vbulletin->db->query_read(" SELECT post.*, thread.title, thread.forumid FROM " . TABLE_PREFIX . "post AS post INNER JOIN " . TABLE_PREFIX . "thread AS thread ON thread.threadid = post.threadid ORDER BY post.dateline DESC ");
$pcount = 0;
while ($tpost = $db->fetch_array($recent_posts) AND $pcount < $number_of_posts) { if (($vbulletin->userinfo['forumpermissions'][$tpost['forumid']] & $vbulletin->bf_ugp_forumpermissions['canview']) AND (($tpost['visible'] == 1) OR can_moderate($tpost['forumid']))) { $pcount++; $avatar_url = fetch_avatar_url($tpost['userid']); $avatar = $avatar_url[0];
if (!$avatar) { $avatar = $vbulletin->stylevars['imgdir_misc']['imagedir'] . '/unknown.gif'; }
$tpost['title'] = fetch_censored_text($tpost['title']); $tpost['pagetext'] = $bbcode_parser->parse($tpost['pagetext'], $tpost['forumid'], $tpost['allowsmilie']); $tpost['pagetext'] = str_replace('<p>', '', $tpost['pagetext']); $tpost['pagetext'] = str_replace('</p>', '', $tpost['pagetext']); $tpost['pagetext'] = htmlentities($tpost['pagetext'], ENT_QUOTES, 'ISO-8859-15'); $tpost['pagetext'] = html_entity_decode($tpost['pagetext'], ENT_QUOTES, 'ISO-8859-15'); if ($vbulletin->options['markfl_unm_active']) { require_once('./usernamemarkup.php'); $tpost['pagetext'] = parse_unm($tpost['pagetext']); } if ($vbulletin->options['markfl_thread_active'] AND $vbulletin->options['markfl_acrojax_enable'] AND $vbulletin->options['markfl_acrojax_list']) { require_once('./acronyms.php'); if (do_acronyms()) { if (strpos($vbulletin->options['markfl_acrojax_areas'], 'Posts') !== false) { $tpost['pagetext'] = parse_acronyms($tpost['pagetext']); } } }