egroupware/filemanager/index.php
Pim Snel 9933a9c3fa another mayor code cleanup
checked for register globals bugs
moved all unneccesary global vars to class vars
added basedir test with feedback to alert for wrong configuration
added fakedir test with feedback to alert for wrong configuration
improved homedir creation withg feedback
improved standard messages
2004-03-02 00:39:52 +00:00

26 lines
590 B
PHP
Executable File

<?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();
?>