egroupware/filemanager/index.php

26 lines
590 B
PHP
Raw Normal View History

<?php
// FIXME add copyright header
/*
eGroupWare - http://www.egroupware.org
written by Pim Snel <pim@lingewoud.nl>
*/
$phpgw_flags = Array(
'currentapp' => 'filemanager',
'noheader' => True,
'nonavbar' => True,
'noappheader' => True,
'noappfooter' => True,
'nofooter' => True
);
$GLOBALS['phpgw_info']['flags'] = $phpgw_flags;
include('../header.inc.php');
Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=filemanager.uifilemanager.index'));
$GLOBALS['phpgw']->common->phpgw_exit();
2001-05-21 03:09:20 +02:00
?>