From 4ab390e4ee723cce68fbce30323b805a74a5f1c6 Mon Sep 17 00:00:00 2001 From: Tim Gerundt Date: Fri, 24 Jun 2011 18:34:48 +0200 Subject: [PATCH] Web: Show active forum topics at dev info page --- htdocs/devinfo/index.php | 12 +++ htdocs/site/activetopics.php | 188 +++++++++++++++++++++++++++++++++++ 2 files changed, 200 insertions(+) create mode 100644 htdocs/site/activetopics.php diff --git a/htdocs/devinfo/index.php b/htdocs/devinfo/index.php index 70728ebf8..e7964eaee 100644 --- a/htdocs/devinfo/index.php +++ b/htdocs/devinfo/index.php @@ -64,6 +64,18 @@ the latest sources in a zip or tgz archive from the github website.

print("\n"); ?>

View complete Trac timeline…

+

Active Forum Topics

+\n"); + foreach ($activetopics->getTopics(0, 10) as $topic) { //for all active topics... + print("
  • getLink()."\">".$topic->getTitle()."last post by ".$topic->getLastPostUser()."
  • \n"); + } + print("\n"); +?> +

    View all active topics…

    Doxygen