Files
luos/workflow/engine/methods/services/sessionPersists.php

7 lines
277 B
PHP
Raw Normal View History

2012-11-01 16:45:46 -04:00
<?php
$response = new stdclass();
$response->status = isset($_SESSION['USER_LOGGED']);
if (isset($_REQUEST['dynaformEditorParams'])) {
$_SESSION['Current_Dynafom']['Parameters'] = unserialize(stripslashes($_REQUEST['dynaformEditorParams']));
}
2012-11-01 16:45:46 -04:00
die(G::json_encode($response));