List latest threads outside forum
I am looking for a script to list the latest threads outside of the forum.
I used vbexternal but it is now hosed since Gold hit.
I have also tried the following script which does not work...
<!--
var max = 13;
if(threads.length < max) max = threads.length;
for(i = 0; i < max; i++)
{
if (threads[i].title.length > 50)
{ threads[i].title = threads[i].title.substring(0, 20) + '...'; }
document.writeln("<li><a href=\"http://www.yourforum.com/forum/showthread.php?t=" + threads[i].threadid + "\" style=\" color:black; \">" + threads[i].title + "</a><br> (" + threads[i].poster + " - Erstellt am: " + threads[i].threaddate + ") <br><br></li>");
}
//-->
|