source: trunk/jabberit_messenger/client.php @ 2177

Revision 2177, 775 bytes checked in by alexandrecorreia, 14 years ago (diff)

Ticket #911 - Correcao para unificacao do ajax dentro dos modulos

  • Property svn:executable set to *
Line 
1<?php
2   /*****************************************************
3        * Applet - JabberIt
4        * Colaboradores : Alexandre Correia / Rodrigo Souza
5        *
6        ***************************************************/
7       
8        if( file_exists("../header.session.inc.php"))
9                require_once("../header.session.inc.php");
10        else if(file_exists("../../header.session.inc.php"))
11                require_once("../../header.session.inc.php");
12       
13        $currentApp = ($_SESSION['phpgw_info']['expresso']['currentapp']) ? $_SESSION['phpgw_info']['expresso']['currentapp'] : "jabberit_messenger";
14
15        $GLOBALS['phpgw_info']['flags'] = array(
16                                                        'currentapp' => $currentApp,
17                                                        'nonavbar'   => true,
18                                                        'noheader'   => true
19                                                );
20        require_once("../header.inc.php");
21       
22        require_once(dirname(__FILE__)."/inc/login.php");
23
24?>
Note: See TracBrowser for help on using the repository browser.