You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
810 B
25 lines
810 B
4 months ago
|
<?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");
|
||
|
?>
|