source: trunk/filemanager/index.php @ 2483

Revision 2483, 1.5 KB checked in by rodsouza, 14 years ago (diff)

Ticket #1009 - Permitindo que o ExpressoDocs? não realize reload de página.

  • Property svn:executable set to *
Line 
1<?php
2
3        /***************************************************************************
4        * Expresso Livre                                                           *
5        * http://www.expressolivre.org                                             *
6        * --------------------------------------------                             *
7        *  This program is free software; you can redistribute it and/or modify it *
8        *  under the terms of the GNU General Public License as published by the   *
9        *  Free Software Foundation; either version 2 of the License, or (at your  *
10        *  option) any later version.                                              *
11        \**************************************************************************/
12       
13        // FIXME add copyright header
14        /*
15        eGroupWare - http://www.egroupware.org
16        written by Pim Snel <pim@lingewoud.nl>
17        */
18
19
20        $phpgw_flags = Array(
21                'currentapp'    =>      'filemanager',
22                //'noheader'      =>      True,
23                //'nonavbar'      =>      True,
24                'noappheader'   =>      True,
25                'noappfooter'   =>      True,
26                'nofooter'      =>      True
27        );
28
29        $GLOBALS['phpgw_info']['flags'] = $phpgw_flags;
30
31        include('../header.inc.php');
32        $preferences = $GLOBALS['phpgw']->preferences->read();
33        $_SESSION['phpgw_info']['user']['preferences']['filemanager'] = $preferences['filemanager'];
34
35        $GLOBALS[ 'phpgw' ] -> redirect( $GLOBALS[ 'phpgw' ] -> link('/index.php','menuaction=filemanager.uifilemanager.index' ) );
36        $GLOBALS['phpgw']->common->phpgw_exit();
37?>
Note: See TracBrowser for help on using the repository browser.