X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=boot.php;h=cdd71719a6e46035d1bbfa6926c404f7302dcb4b;hb=db04a78d844f5fc528bf7ffb2c2c04767ab64b5f;hp=eecc14d58401b7a7983f8886eb9e3ee7373bd739;hpb=96501bda816bb3db29ea19d89e6ffc0e83f350b3;p=friendica.git diff --git a/boot.php b/boot.php index eecc14d584..cdd71719a6 100644 --- a/boot.php +++ b/boot.php @@ -41,9 +41,9 @@ require_once 'include/poller.php'; define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); -define ( 'FRIENDICA_VERSION', '3.5.4-rc' ); +define ( 'FRIENDICA_VERSION', '3.6-dev' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1234 ); +define ( 'DB_UPDATE_VERSION', 1235 ); /** * @brief Constant with a HTML line break. @@ -904,8 +904,14 @@ function login($register = false, $hiddens = false) { * @brief Used to end the current process, after saving session state. */ function killme() { + global $session_exists; + if (!get_app()->is_backend()) { - session_write_close(); + if (!$session_exists) { + session_abort(); + } else { + session_write_close(); + } } exit();