2001-06-25 09:28:51 +02:00
|
|
|
<?php
|
2001-05-21 03:09:20 +02:00
|
|
|
|
2002-02-25 06:41:22 +01:00
|
|
|
###
|
|
|
|
# DEV NOTE:
|
|
|
|
#
|
2002-09-21 07:26:43 +02:00
|
|
|
# index.php is depreciated by the inc/class.xxfilemanager.inc.php files.
|
2002-02-25 06:41:22 +01:00
|
|
|
# index.php is still used in the 0.9.14 release, but all future changes should be
|
2002-09-21 07:26:43 +02:00
|
|
|
# made to the inc/class.xxfilemanager.inc.php files (3-tiered). This includes using templates.
|
2002-02-25 06:41:22 +01:00
|
|
|
###
|
|
|
|
|
2001-08-24 10:08:06 +02:00
|
|
|
###
|
|
|
|
# Enable this to display some debugging info
|
|
|
|
###
|
|
|
|
|
2003-03-04 01:56:26 +01:00
|
|
|
$phpgw_flags = Array(
|
|
|
|
'currentapp' => 'filemanager',
|
|
|
|
'noheader' => True,
|
|
|
|
'nonavbar' => True,
|
|
|
|
'noappheader' => True,
|
|
|
|
'noappfooter' => True,
|
2003-04-08 22:47:38 +02:00
|
|
|
'nofooter' => True
|
2002-01-16 07:32:19 +01:00
|
|
|
);
|
2003-03-04 01:56:26 +01:00
|
|
|
$GLOBALS['phpgw_info']['flags'] = $phpgw_flags;
|
2001-05-21 03:09:20 +02:00
|
|
|
|
2003-03-04 01:56:26 +01:00
|
|
|
include('../header.inc.php');
|
2001-05-21 03:09:20 +02:00
|
|
|
|
2003-03-04 01:56:26 +01:00
|
|
|
$parms = Array(
|
|
|
|
'menuaction'=> 'filemanager.uifilemanager.index'
|
2002-01-16 07:32:19 +01:00
|
|
|
);
|
|
|
|
|
2003-04-08 22:47:38 +02:00
|
|
|
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php',$parms));
|
2003-03-04 01:56:26 +01:00
|
|
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
|
|
|
exit;
|
2001-05-21 03:09:20 +02:00
|
|
|
?>
|