Move Core\Session::set() to DI::session()->set()

This commit is contained in:
Philipp 2022-10-18 21:12:23 +02:00
parent dfb5792773
commit 3a8bcb3fbf
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
7 changed files with 7 additions and 12 deletions

View file

@ -189,7 +189,7 @@ class Status extends BaseProfile
// Set a time stamp for this page. We will make use of it when we
// search for new items (update routine)
$last_updated_array[$last_updated_key] = time();
Session::set('last_updated', $last_updated_array);
DI::session()->set('last_updated', $last_updated_array);
if ($is_owner && !DI::config()->get('theme', 'hide_eventlist')) {
$o .= ProfileModel::getBirthdays();