mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
9933a9c3fa
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
26 lines
590 B
PHP
Executable File
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();
|
|
?>
|