2001-06-25 09:28:51 +02:00
|
|
|
<?php
|
2005-10-14 12:41:15 +02:00
|
|
|
/**************************************************************************\
|
|
|
|
* eGroupWare - Filemanager *
|
|
|
|
* http://www.egroupware.org *
|
|
|
|
* ------------------------------------------------------------------------ *
|
|
|
|
* 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. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
2007-07-19 18:13:53 +02:00
|
|
|
/*
|
2005-10-14 12:41:15 +02:00
|
|
|
$GLOBALS['egw_info'] = array(
|
|
|
|
'flags' => array(
|
|
|
|
'currentapp' => 'filemanager',
|
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True,
|
|
|
|
'noappheader' => True,
|
|
|
|
'noappfooter' => True,
|
|
|
|
'nofooter' => True,
|
|
|
|
),
|
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
|
|
|
|
2005-09-14 03:58:20 +02:00
|
|
|
ExecMethod('filemanager.uifilemanager.index');
|
2007-07-19 18:13:53 +02:00
|
|
|
*/
|
|
|
|
header('Location: ../index.php?menuaction=filemanager.uifilemanager.index');
|
2001-05-21 03:09:20 +02:00
|
|
|
?>
|