1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

Additional session debug info added.

This commit is contained in:
Cameron
2015-01-20 20:56:20 -08:00
parent 6b5a4f1094
commit db1061acab

View File

@@ -537,7 +537,7 @@ class e107_db_debug {
}
}
$sess = e107::getSession();
$text .= "
@@ -553,6 +553,21 @@ class e107_db_debug {
<tr>
<td class='fcaption' colspan='2'><h2>Session</h2></td>
</tr>
<tr>
<td class='forumheader3'>Session lifetime</td>
<td class='forumheader3'>".$sess->getOption('lifetime')." seconds</td>
</tr>
<tr>
<td class='forumheader3'>Session domain</td>
<td class='forumheader3'>".$sess->getOption('domain')."</td>
</tr>
<tr>
<td class='forumheader3'>Session save method</td>
<td class='forumheader3'>".$sess->getSaveMethod()."</td>
</tr>
<tr>
<td class='forumheader3' colspan='2'><pre>".htmlspecialchars(print_r($_SESSION,TRUE))."</pre></td>
</tr>