USER_HISTORY-236 Fix the session block funcionality

This commit is contained in:
Brayan Pereyra
2025-09-24 14:18:54 +00:00
parent 177c7fd5f7
commit 06497d362e
14 changed files with 187 additions and 39 deletions

View File

@@ -202,11 +202,11 @@ class PropelTable
$this->filter = urldecode($_GET['filter']);
}
if ($xmlForm->ajaxServer != '') {
$this->ajaxServer = G::encryptLink($xmlForm->ajaxServer);
$this->ajaxServer = $xmlForm->ajaxServer;
} else {
$this->ajaxServer = G::encryptLink('../gulliver/propelTableAjax');
$this->ajaxServer = '../gulliver/propelTableAjax';
}
$this->ownerPage = G::encryptLink(SYS_CURRENT_URI);
$this->ownerPage = SYS_CURRENT_URI;
// Config attributes from XMLFORM file
$myAttributes = get_class_vars(get_class($this));
foreach ($this->xmlForm->xmlform->tree->attribute as $atrib => $value) {