2001-06-25 09:28:51 +02:00
|
|
|
<?php
|
2004-03-02 01:39:52 +01:00
|
|
|
|
|
|
|
// FIXME add copyright header
|
2003-10-24 22:33:34 +02:00
|
|
|
/*
|
|
|
|
eGroupWare - http://www.egroupware.org
|
2004-03-02 01:39:52 +01:00
|
|
|
written by Pim Snel <pim@lingewoud.nl>
|
2003-10-24 22:33:34 +02:00
|
|
|
*/
|
2003-08-28 16:31:11 +02:00
|
|
|
|
|
|
|
|
2004-03-02 01:39:52 +01:00
|
|
|
$phpgw_flags = Array(
|
|
|
|
'currentapp' => 'filemanager',
|
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True,
|
|
|
|
'noappheader' => True,
|
|
|
|
'noappfooter' => True,
|
|
|
|
'nofooter' => True
|
2003-10-24 22:33:34 +02:00
|
|
|
);
|
2003-08-28 16:31:11 +02:00
|
|
|
|
2004-03-02 01:39:52 +01:00
|
|
|
$GLOBALS['phpgw_info']['flags'] = $phpgw_flags;
|
2003-10-24 22:33:34 +02:00
|
|
|
|
2004-03-02 01:39:52 +01:00
|
|
|
include('../header.inc.php');
|
2003-10-24 22:33:34 +02:00
|
|
|
|
2004-03-02 01:39:52 +01:00
|
|
|
Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=filemanager.uifilemanager.index'));
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-05-21 03:09:20 +02:00
|
|
|
?>
|