Merged in victorsl/processmaker/PM-599 (pull request #924)

PM-599 "Se pierde sesion al ingresar a history case en el case tracker..." SOLVED
This commit is contained in:
Julio Cesar Laura Avendaño
2014-10-14 09:03:07 -04:00
2 changed files with 13 additions and 7 deletions

View File

@@ -78,7 +78,7 @@
//order by
$orderBy = get_ajax_value('order');
if (isset($orderBy)) {
$orderBy = urldecode($orderBy);
$orderBy = urldecode($orderBy);
$ntable->orderBy = $orderBy;
}
@@ -126,11 +126,16 @@
return ;
}
$ntable->renderTable( 'content' );
$ntable->renderTable("content");
G::LoadClass('configuration');
$conf = new Configurations();
$conf->setConfig($ntable->__Configuration,$ntable,$conf->aConfig);
$conf->saveConfig('pagedTable',$ntable->__OBJ_UID,'',$_SESSION['USER_LOGGED'],'');
G::LoadClass("configuration");
$conf = new Configurations();
$conf->setConfig($ntable->__Configuration, $ntable, $conf->aConfig);
if (isset($_SESSION["USER_LOGGED"])) {
$conf->saveConfig("pagedTable", $ntable->__OBJ_UID, "", $_SESSION["USER_LOGGED"], "");
} else {
$conf->saveConfig("pagedTable", $ntable->__OBJ_UID);
}
?>

View File

@@ -892,6 +892,7 @@ if (! defined( 'EXECUTE_BY_CRON' )) {
$noLoginFiles[] = 'cases_NextStep';
$noLoginFiles[] = 'genericAjax';
$noLoginFiles[] = 'casesSaveDataView';
$noLoginFiles[] = "propelTableAjax";
$noLoginFolders[] = 'services';
$noLoginFolders[] = 'tracker';