FIX #9510
This commit is contained in:
parent
df395847d3
commit
b421c29ea7
@ -157,7 +157,8 @@ $i=0;
|
|||||||
foreach($_SESSION as $key => $val)
|
foreach($_SESSION as $key => $val)
|
||||||
{
|
{
|
||||||
if ($i > 0) print ', ';
|
if ($i > 0) print ', ';
|
||||||
print $key.' => '.dol_escape_htmltag($val);
|
if (is_array($val)) print $key.' => array(...)';
|
||||||
|
else print $key.' => '.dol_escape_htmltag($val);
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
print '</td></tr>'."\n";
|
print '</td></tr>'."\n";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user