include all queries from navigation in debug statistics (by not closing session file before script ends)

This commit is contained in:
Sebastian Mendel
2008-01-21 14:05:09 +00:00
parent e1e9ccac17
commit d4d008cd17

View File

@@ -70,7 +70,10 @@ if (isset($_REQUEST['pos'])) {
$pos = $_SESSION['userconf']['navi_limit_offset']; $pos = $_SESSION['userconf']['navi_limit_offset'];
// free the session file, for the other frames to be loaded // free the session file, for the other frames to be loaded
session_write_close(); // but only if debugging is not enabled
if (empty($_SESSION['debug'])) {
session_write_close();
}
/** /**
* the output compression library * the output compression library