]> git.mxchange.org Git - friendica-addons.git/commitdiff
Move Core\Session::get() to DI::session()->get()
authorPhilipp <admin@philipp.info>
Tue, 18 Oct 2022 19:10:36 +0000 (21:10 +0200)
committerPhilipp <admin@philipp.info>
Tue, 18 Oct 2022 19:10:36 +0000 (21:10 +0200)
curweather/curweather.php
diaspora/diaspora.php

index 27d6f94013945d26ab6927f207bdb02b5404cbfa..4e92cc093057d015fda2b65cf90493eeee009bdf 100644 (file)
@@ -107,7 +107,7 @@ function curweather_network_mod_init(App $a, string &$body)
        $rpt = DI::pConfig()->get(local_user(), 'curweather', 'curweather_loc');
 
        // Set the language to the browsers language or default and use metric units
-       $lang = Session::get('language', DI::config()->get('system', 'language'));
+       $lang  = DI::session()->get('language', DI::config()->get('system', 'language'));
        $units = DI::pConfig()->get( local_user(), 'curweather', 'curweather_units');
        $appid = DI::config()->get('curweather', 'appid');
        $cachetime = intval(DI::config()->get('curweather', 'cachetime'));
index fc29fdc6dcd11cfaf9bd6c2403841b365e9fb7a3..8ede995cfde1eb26b1ef7c7d103ce899a7015e7d 100644 (file)
@@ -63,10 +63,10 @@ function diaspora_settings(App $a, array &$data)
 
        $info  = '';
        $error = '';
-       if (Session::get('my_address')) {
-               $info = DI::l10n()->t('Please remember: You can always be reached from Diaspora with your Friendica handle <strong>%s</strong>. ', Session::get('my_address'));
+       if (DI::session()->get('my_address')) {
+               $info = DI::l10n()->t('Please remember: You can always be reached from Diaspora with your Friendica handle <strong>%s</strong>. ', DI::session()->get('my_address'));
                $info .= DI::l10n()->t('This connector is only meant if you still want to use your old Diaspora account for some time. ');
-               $info .= DI::l10n()->t('However, it is preferred that you tell your Diaspora contacts the new handle <strong>%s</strong> instead.', Session::get('my_address'));
+               $info .= DI::l10n()->t('However, it is preferred that you tell your Diaspora contacts the new handle <strong>%s</strong> instead.', DI::session()->get('my_address'));
        }
 
        $aspect_select = '';