mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Merge pull request #2739 from annando/1608-session-close
Only close the session if it had been opened.
This commit is contained in:
commit
1519ac3bf4
3 changed files with 7 additions and 4 deletions
2
boot.php
2
boot.php
|
@ -1698,7 +1698,9 @@ function login($register = false, $hiddens=false) {
|
|||
* @brief Used to end the current process, after saving session state.
|
||||
*/
|
||||
function killme() {
|
||||
if (!get_app()->is_backend())
|
||||
session_write_close();
|
||||
|
||||
exit;
|
||||
}
|
||||
|
||||
|
|
|
@ -489,6 +489,7 @@ if (isset($_GET["mode"]) AND ($_GET["mode"] == "raw")) {
|
|||
|
||||
echo substr($target->saveHTML(), 6, -8);
|
||||
|
||||
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();
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue