00001 <?php
00002 # This file is part of the Savane project
00003 # <http://gna.org/projects/savane/>
00004 #
00005 # $Id: history.php 5495 2006-02-24 18:50:06Z yeupou $
00006 #
00007 # Copyright 1999-2000 (c) The SourceForge Crew
00008 # Copyright 2000-2003 (c) Free Software Foundation
00009 #
00010 # Copyright 2006 (c) Mathieu Roy <yeupou--gnu.org>
00011 #
00012 #
00013 # The Savane project is free software; you can redistribute it and/or
00014 # modify it under the terms of the GNU General Public License
00015 # as published by the Free Software Foundation; either version 2
00016 # of the License, or (at your option) any later version.
00017 #
00018 # The Savane project is distributed in the hope that it will be useful,
00019 # but WITHOUT ANY WARRANTY; without even the implied warranty of
00020 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00021 # GNU General Public License for more details.
00022 #
00023 # You should have received a copy of the GNU General Public License
00024 # along with the Savane project; if not, write to the Free Software
00025 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00026
00027
00028 require "../../include/pre.php";
00029
00030 register_globals_off();
00031
00032 if (member_check(0, $group_id))
00033 {
00034 site_project_header(array('title'=>_("Project History"),'group'=>$group_id,'context'=>'ahome'));
00035
00036 show_grouphistory($group_id);
00037
00038 site_project_footer(array());
00039 }
00040 else
00041 {
00042 exit_permission_denied();
00043 }
00044 ?>