<?php
// This file is part of the Savane project
// <http://gna.org/projects/savane/>
//
// $Id: forbidden_theme.txt,v 1.4 2004/09/22 08:11:50 yeupou Exp $
//
// Savannah - Forbidden themes
// 
//    You can fed $forbid_theme_regexp by a perl regexp
//    with theme names you want to forbid on your system.
//
//    The theme name given in this regexp must not have the extension
//    .css.
//
//    This forbid_theme_regexp site specific variable be useful if you 
//    do not want to provide to users every  themes available for Savannah,
//    for instance because some of them creates troubles with a browser
//    widely used in your company/organisation.
//
//    By default, Savannah forbid only themes which have been made for
//    a specific installation and are very very close to a more generic
//    theme.


// The perl regexp:
//    The two slashes (/ /) are mandatory, see the preg_match manual.

$GLOBALS['forbid_theme_regexp'] = "/^(savanedu)$/";

?>