Only close the session if it had been opened.

This commit is contained in:
Michael Vogel 2016-08-16 21:35:12 +02:00
父節點 789e9577c6
當前提交 1bfdc216d0
共有 3 個檔案被更改,包括 7 行新增4 行删除

查看文件

@ -1698,7 +1698,9 @@ function login($register = false, $hiddens=false) {
* @brief Used to end the current process, after saving session state.
*/
function killme() {
session_write_close();
if (!get_app()->is_backend())
session_write_close();
exit;
}

查看文件

@ -489,7 +489,8 @@ if (isset($_GET["mode"]) AND ($_GET["mode"] == "raw")) {
echo substr($target->saveHTML(), 6, -8);
session_write_close();
if (!$a->is_backend())
session_write_close();
exit;
}
@ -514,5 +515,6 @@ if(!$template) {
require_once($template);
session_write_close();
if (!$a->is_backend())
session_write_close();
exit;

查看文件

@ -25,7 +25,6 @@ function hostxrd_init(&$a) {
'$zot_post' => z_root() . '/post',
'$bigkey' => salmon_key(get_config('system','site_pubkey')),
));
session_write_close();
exit();
}