We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d7ebe1 commit 5508e38Copy full SHA for 5508e38
1 file changed
src/Bridges/HttpTracy/templates/SessionPanel.panel.phtml
@@ -33,6 +33,8 @@ use Nette,
33
foreach ($_SESSION as $k => $v) {
34
if ($k === '__NF') {
35
$k = 'Nette Session'; $v = isset($v['DATA']) ? $v['DATA'] : NULL;
36
+ } elseif ($k === '_tracy') {
37
+ continue;
38
}
39
echo '<tr><th>', htmlspecialchars($k, ENT_IGNORE, 'UTF-8'), '</th><td>', Dumper::toHtml($v, [Dumper::LIVE => TRUE]), "</td></tr>\n";
40
}?>
0 commit comments