Skip to content
Snippets Groups Projects
Commit 43d57fcd authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #5328 unlock resource after action

parent 2a6568f9
No related branches found
No related tags found
No related merge requests found
...@@ -386,20 +386,23 @@ else if(empty($_POST['values']) || !isset($_POST['action_id']) || empty($_POST[' ...@@ -386,20 +386,23 @@ else if(empty($_POST['values']) || !isset($_POST['action_id']) || empty($_POST['
echo "{status : 0, error_txt : '".addslashes(functions::xssafe($_SESSION['action_error']))."'".$comp.", result_id : '".$res_action['result']."'}"; echo "{status : 0, error_txt : '".addslashes(functions::xssafe($_SESSION['action_error']))."'".$comp.", result_id : '".$res_action['result']."'}";
} }
} }
// Save action in history if needed
if($bool_history=='Y') require_once 'apps/maarch_entreprise/actions/docLocker.php';
require_once("core".DIRECTORY_SEPARATOR."class".DIRECTORY_SEPARATOR."class_history.php");
$hist = new history();
$arr_res = explode('#', $res_action['result']);
if(!is_array($res_action['history_msg'])){
$res_action['history_msg'] = [$res_action['history_msg']];
}
for($i=0; $i<count($arr_res);$i++)
{ {
$db = new Database(); if(!empty($arr_res[$i]))
require_once("core".DIRECTORY_SEPARATOR."class".DIRECTORY_SEPARATOR."class_history.php");
$hist = new history();
$arr_res = explode('#', $res_action['result']);
if(!is_array($res_action['history_msg'])){
$res_action['history_msg'] = [$res_action['history_msg']];
}
for($i=0; $i<count($arr_res );$i++)
{ {
if(!empty($arr_res[$i])) $docLocker = new docLocker($arr_res[$i]);
$docLocker->unlock();
// Save action in history if needed
if($bool_history=='Y')
{ {
$what = ''; $what = '';
if (isset($_SESSION['current_basket']['id']) && !empty($_SESSION['current_basket']['id'])) { if (isset($_SESSION['current_basket']['id']) && !empty($_SESSION['current_basket']['id'])) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment