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

FEAT #3227 remove concatenation

parent 9a87e79d
No related branches found
No related tags found
No related merge requests found
...@@ -391,8 +391,8 @@ else if(empty($_POST['values']) || !isset($_POST['action_id']) || empty($_POST[' ...@@ -391,8 +391,8 @@ else if(empty($_POST['values']) || !isset($_POST['action_id']) || empty($_POST['
{ {
$what .= $res_action['history_msg']; $what .= $res_action['history_msg'];
} }
$_SESSION['info_basket'] .= $what . ' '; $_SESSION['info_basket'] = $what . ' ';
$_SESSION['info'] .= $what . ' '; $_SESSION['info'] = $what . ' ';
$_SESSION['cpt_info_basket'] = 0; $_SESSION['cpt_info_basket'] = 0;
$hist->add( $hist->add(
$_POST['table'], $_POST['table'],
......
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