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

@ -634,8 +634,8 @@ class App
if ((parse_url($_GET['zrl'], PHP_URL_QUERY) == '') &&
strstr(parse_url($_GET['zrl'], PHP_URL_PATH), '/profile/')) {
if ($this->session->get('visitor_home') != $_GET['zrl']) {
Core\Session::set('my_url', $_GET['zrl']);
Core\Session::set('authenticated', 0);
$this->session->set('my_url', $_GET['zrl']);
$this->session->set('authenticated', 0);
$remote_contact = Contact::getByURL($_GET['zrl'], false, ['subscribe']);
if (!empty($remote_contact['subscribe'])) {