diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-12-07 21:52:17 +0100 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-12-07 21:52:17 +0100 |
commit | 4989df66a26fb8646326e1468a4ba2a6c84a8659 (patch) | |
tree | 30579565dfc9a83dea54cdd964f930c68b2f3243 /phpBB/includes/functions.php | |
parent | a4c1daa259ea6ce0023a25ef59cdb281702d029a (diff) | |
parent | fbacd1df16dfe15bb4aa2d69d9c743e7a5e7b893 (diff) | |
download | forums-4989df66a26fb8646326e1468a4ba2a6c84a8659.tar forums-4989df66a26fb8646326e1468a4ba2a6c84a8659.tar.gz forums-4989df66a26fb8646326e1468a4ba2a6c84a8659.tar.bz2 forums-4989df66a26fb8646326e1468a4ba2a6c84a8659.tar.xz forums-4989df66a26fb8646326e1468a4ba2a6c84a8659.zip |
Merge pull request #4008 from Zoddo/ticket/14261
[ticket/14261] Move the update of session informations to page_footer()
* Zoddo/ticket/14261:
[ticket/14261] Fix tests by removing old code.
[ticket/14261] Move the update of session informations to page_footer()
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 2d94bd14a7..bb1e47ecf7 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -5395,6 +5395,8 @@ function page_footer($run_cron = true, $display_template = true, $exit_handler = return; } + $user->update_session_infos(); + phpbb_check_and_display_sql_report($request, $auth, $db); $template->assign_vars(array( |