source: branches/2.3/jabberit_messenger/client.php @ 4453

Revision 4453, 775 bytes checked in by rafaelraymundo, 13 years ago (diff)

Ticket #1726 - Adicionando jabberit_messenger da comunidade.

  • 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.