Files
survey-manager/survey-nginx/htdocs/avw/navy/go/controls/acl.php
2024-07-19 10:05:36 +00:00

25 lines
810 B
PHP

<?php
/*
Copyright Intermesh 2003
Author: Merijn Schering <mschering@intermesh.nl>
Version: 1.0 Release date: 08 July 2003
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, or (at your
option) any later version.
*/
require_once("../Group-Office.php");
$GO_SECURITY->authenticate();
if (isset($_REQUEST['search_field']))
{
SetCookie("user_search_field",$_REQUEST['search_field'],time()+3600*24*365,"/","",0);
$_COOKIE['user_search_field'] = $_REQUEST['search_field'];
}
$GO_HEADER['body_arguments'] = 'class="acl"';
require_once($GO_THEME->theme_path."header.inc");
$acl = new acl($_REQUEST['acl_id']);
require_once($GO_THEME->theme_path."footer.inc");
?>