From c839a88dc59926dfbe0c2613df0a910d822431df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Thu, 23 Jun 2022 07:53:57 +0200 Subject: [PATCH] Wrong type-hint + renamed $b -> $body --- curweather/curweather.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curweather/curweather.php b/curweather/curweather.php index b117d800..975fbde3 100644 --- a/curweather/curweather.php +++ b/curweather/curweather.php @@ -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'),