Results 1 to 10 of 92
Threaded View
-
25th Dec 2009, 04:51 PM #11MemberWebsite's:
forumflare.comPlugin Manager > Latests Posts > Edit that.
Replace your code with this:
$siteposts = $db->query_read("
SELECT thread.lastposter, thread.lastpost, thread.views, thread.open, thread.forumid, thread.replycount, thread.threadid, thread.pollid, thread.title, user.username, user.userid, user.usergroupid, IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid FROM thread as thread
LEFT JOIN user AS user ON (user.username = thread.lastposter) ORDER BY lastpost DESC LIMIT 0, 5");
while($latest = $db->fetch_array($siteposts))
{
$latest['title'] = str_replace($hidechar, " ", $latest['title']);
if (strlen($latest['title']) > 28)
{
$latest['title'] = substr($latest['title'], 0, 28) . '...';
}
else
{
$latest['title'] = $latest['title'];
}
$latest['title'] = htmlspecialchars($latest['title']);
$trans = array("&" => "&");
$latest['title'] = strtr($latest['title'], $trans);
$latest['replycount'] = number_format($latest['replycount']);
$lastest[musername] = fetch_musername($latest);
$lastest[musername] = $db->escape_string($lastest['musername']);
$date = date("g:i a",$latest['lastpost']);
$latest_posts .= "
<div style='padding: 4px; border-bottom: 1px dashed blue;' >
<div style='font-size: 11px;'>• <a href='showthread.php?t=$latest[threadid]' title='$latest[title]' style='font-size: 10px;'><b>$latest[title]</b></a></div>
<div style='padding-top: 1px; padding-bottom: 1px;'><a href='member.php?u=$latest[userid]' style='font-size: 9px;'>Posted by $latest[musername]</a></div>
<div style='padding-top: 1px; padding-bottom: 2px; font-size: 7pt;'>
<span style='float: right;'>at $date</span>
<span> <font color='#8A478F'><b>$latest[replycount] replies</b></font></span>
</div>
</div>";
}
$db->free_result($siteposts);
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Latest Post not updating for me
By Ifirst in forum Feedback and SuggestionsReplies: 3Last Post: 27th Oct 2012, 09:41 PM -
Does the latest post mod really work?
By Apathetic in forum Feedback and SuggestionsReplies: 6Last Post: 10th Jun 2012, 02:15 PM -
Latest Post & vB
By Rick in forum Technical Help Desk SupportReplies: 0Last Post: 1st Oct 2011, 10:42 AM -
Latest Post like KWWH in This SB?
By Hax0r in forum vBulletinReplies: 3Last Post: 17th Sep 2010, 08:51 AM -
Latest Post Next to Sbox
By DLow in forum IP.BoardReplies: 1Last Post: 22nd Apr 2010, 11:55 AM
themaCreator - create posts from...
Version 3.22 released. Open older version (or...