#################################################################
## Mod Title: Hide Forum
## Mod Version: 1.0.0
## Author: AbelaJohnB <
abela@phpbb.com> (John B. Abela)
http://www.johnabela.com/
## Description: This MOD will allow you to hid a specific forum from index.php
##
## Installation Level: easy
## Installation Time: 1 minute
## Files To Edit: index.php
## Included Files: n/a
## Generator: phpBB2 Mod Maker
#################################################################
## This MOD is released under the GPL License.
## Intellectual Property is retained by the MOD Author(s) listed above
#################################################################
## For Security Purposes, Please Check:
http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at:
http://www.phpbb.com/mods/downloads/
#################################################################
##
## Author Note:
## I will work on getting this set within the ACP
## Within a later version. Should be easy.
##
## For now, you'll just have to edit the XX in the 'replace with' line.
##
## Please sign my guestbook:
http://www.johnabela.com/guestbook/
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################
#
#-----[ OPEN ]------------------------------------------
#
index.php
#
#-----[ FIND ]------------------------------------------
#
if ( $is_auth_ary[$forum_id]['auth_view'] )
#
#-----[ REPLACE WITH ]------------------------------------------
#
if ( $is_auth_ary[$forum_id]['auth_view'] && $forum_id !='XX' ) // DO NOT DISPLAY A SPECIFIC CATEGORY SETTING
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
#EoM