mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Try to fix redirects from AJAX calls to static methods
This commit is contained in:
parent
08002abcef
commit
1ece2bb4f0
@ -192,8 +192,18 @@ class Request
|
||||
if (!$request) // eT2 request/session expired
|
||||
{
|
||||
list($app) = explode('.', $_GET['menuaction']);
|
||||
$index_url = isset($GLOBALS['egw_info']['apps'][$app]['index']) ?
|
||||
'/index.php?menuaction='.$GLOBALS['egw_info']['apps'][$app]['index'] : '/'.$app.'/index.php';
|
||||
$global = false;
|
||||
if(isset($GLOBALS['egw_info']['apps'][$app]))
|
||||
{
|
||||
$index_url = isset($GLOBALS['egw_info']['apps'][$app]['index']) ?
|
||||
'/index.php?menuaction='.$GLOBALS['egw_info']['apps'][$app]['index'] : '/'.$app.'/index.php';
|
||||
}
|
||||
else
|
||||
{
|
||||
$index_url = '/index.php';
|
||||
$global = true;
|
||||
$app = null;
|
||||
}
|
||||
// add a unique token to redirect to avoid client-side framework tries refreshing via nextmatch
|
||||
$index_url .= (strpos($index_url, '?') ? '&' : '?').'redirect='.microtime(true);
|
||||
error_log(__METHOD__."('$id', ...) eT2 request not found / expired --> redirecting app $app to $index_url (_GET[menuaction]=$_GET[menuaction], isJSONRequest()=".array2string(Api\Json\Request::isJSONRequest()).')');
|
||||
@ -203,7 +213,7 @@ class Request
|
||||
if (strpos($_GET['menuaction'], '.ajax_destroy_session.etemplate') === false)
|
||||
{
|
||||
$response = Api\Json\Response::get();
|
||||
$response->redirect($index_url, false, $app);
|
||||
$response->redirect($index_url, $global, $app);
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user