]> git.mxchange.org Git - friendica-addons.git/commitdiff
Wrong type-hint + renamed $b -> $body
authorRoland Häder <roland@mxchange.org>
Thu, 23 Jun 2022 05:53:57 +0000 (07:53 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 23 Jun 2022 05:54:20 +0000 (07:54 +0200)
curweather/curweather.php

index b117d800e4f81c6a47c27108a25ddc0af957800f..975fbde311c53371d72f49afa73848cd3d7b825b 100644 (file)
@@ -87,7 +87,7 @@ function getWeather($loc, $units = 'metric', $lang = 'en', $appid = '', $cacheti
        return $r;
 }
 
-function curweather_network_mod_init(App $a, array &$b)
+function curweather_network_mod_init(App $a, string &$body)
 {
        if (!intval(DI::pConfig()->get(local_user(), 'curweather', 'curweather_enable'))) {
                return;
@@ -112,7 +112,7 @@ function curweather_network_mod_init(App $a, array &$b)
        $appid = DI::config()->get('curweather', 'appid');
        $cachetime = intval(DI::config()->get('curweather', 'cachetime'));
 
-       if ($units === "") {
+       if ($units === '') {
                $units = 'metric';
        }
 
@@ -221,7 +221,7 @@ function curweather_addon_admin(App $a, &$o)
        $appid = DI::config()->get('curweather', 'appid');
        $cachetime = DI::config()->get('curweather', 'cachetime');
 
-       $t = Renderer::getMarkupTemplate("admin.tpl", "addon/curweather/" );
+       $t = Renderer::getMarkupTemplate('admin.tpl', 'addon/curweather/' );
 
        $o = Renderer::replaceMacros($t, [
                '$submit' => DI::l10n()->t('Save Settings'),