Changeset 5042 for trunk/index.php
- Timestamp:
- 09/05/11 18:52:58 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r3435 r5042 69 69 if($app == 'home' && !$api_requested) 70 70 { 71 Header('Location: ' . $GLOBALS['phpgw']->link('/home.php')); 71 if( $_GET['dont_redirect_if_moble'] == 1 ) 72 Header('Location: ' . $GLOBALS['phpgw']->link('/home.php?dont_redirect_if_moble=1')); 73 else 74 Header('Location: ' . $GLOBALS['phpgw']->link('/home.php')); 72 75 } 73 76 … … 125 128 } 126 129 127 $GLOBALS['phpgw']->redirect_link('/home.php'); 130 if( $_GET['dont_redirect_if_moble'] == 1 ) 131 Header('Location: ' . $GLOBALS['phpgw']->link('/home.php?dont_redirect_if_moble=1')); 132 else 133 Header('Location: ' . $GLOBALS['phpgw']->link('/home.php')); 134 135 //$GLOBALS['phpgw']->redirect_link('/home.php'); 128 136 } 129 137
Note: See TracChangeset
for help on using the changeset viewer.