/************************************************************************/
/* Google Tap Beta 0.5.0 - 09 Feb 2003                                  */
/* Copyright (c) 2002 by Nuke Cops                                      */
/* http://nukecops.com                                                  */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/


######################
#
# blocks/block-Modules.php
#
######################
 
Directions: find the following block of code:

        if ($m_title != $main_module) {
            if ((is_admin($admin) AND $view == 2) OR $view != 2) {
                        $content .= "<strong><big>&middot;</big></strong>&nbsp;<a href=\"modules.php?name=$m_title\">$m_title2</a><br>\n";
            }
        }
 


And replace it with this:

        if ($m_title != $main_module) {
            if ((is_admin($admin) AND $view == 2) OR $view != 2) {
                if ($m_title == "Forums") {
                        $content .= "<strong><big>&middot;</big></strong>&nbsp;<a href=\"modules.php?name=$m_title&file=index\">$m_title2</a><br>\n";
                } else {
                        $content .= "<strong><big>&middot;</big></strong>&nbsp;<a href=\"modules.php?name=$m_title\">$m_title2</a><br>\n";
                }
            }
        }


