Ignore:
Timestamp:
11/10/11 14:57:58 (12 years ago)
Author:
niltonneto
Message:

Ticket #2276 - Resincronizando as revisões deste ticket para o Trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/phpgwapi/inc/functions.inc.php

    r5141 r5164  
    345345                                } 
    346346                        } 
     347 
     348                        $ifMobile = false; 
     349                        $browser = CreateObject('phpgwapi.browser'); 
     350                        switch ( $browser->get_platform() ) 
     351                        { 
     352                                case browser::PLATFORM_IPHONE: 
     353                                case browser::PLATFORM_IPOD: 
     354                                case browser::PLATFORM_IPAD: 
     355                                case browser::PLATFORM_BLACKBERRY: 
     356                                case browser::PLATFORM_NOKIA: 
     357                                case browser::PLATFORM_ANDROID: 
     358                                        $ifMobile = true; 
     359                                        break; 
     360                        } 
     361                         
     362                        if( $ifMobile ) 
     363                        { 
     364                                Header('Location: '.$GLOBALS['phpgw_info']['server']['webserver_url'].'/login.php?cd=66'); 
     365                                exit; 
     366                        } 
     367                        else 
     368                        { 
    347369                                // this removes the sessiondata if its saved in the URL 
    348370                                $query = preg_replace('/[&]?sessionid(=|%3D)[^&]+&kp3(=|%3D)[^&]+&domain=.*$/','',$_SERVER['QUERY_STRING']); 
     
    350372                                exit; 
    351373                        } 
     374                } 
    352375 
    353376                $GLOBALS['phpgw']->datetime = CreateObject('phpgwapi.date_time'); 
Note: See TracChangeset for help on using the changeset viewer.