Added wrapper for xajax.addScriptCall(), added ?cd=10 to json.php response again

This commit is contained in:
Andreas Stöckel 2010-06-11 11:41:12 +00:00
parent 88583e9ebf
commit d8983b6cd1
2 changed files with 10 additions and 2 deletions

View File

@ -19,7 +19,7 @@
function xajax_redirect(&$anon_account) function xajax_redirect(&$anon_account)
{ {
$response = new egw_json_response(); $response = new egw_json_response();
$response->redirect($GLOBALS['egw_info']['server']['webserver_url'].'/login.php', true); $response->redirect($GLOBALS['egw_info']['server']['webserver_url'].'/login.php?cd=10', true);
$response->printOutput(); $response->printOutput();
common::egw_exit(); common::egw_exit();

View File

@ -382,6 +382,14 @@ class xajaxResponse extends egw_json_response
$this->redirect($url); $this->redirect($url);
} }
public function addScriptCall($func)
{
$args = func_get_args();
$func = array_shift($args);
$this->script("$func(".implode(",", $args).");");
}
public function getXML() public function getXML()
{ {
return ''; return '';