Wrong type-hint + renamed $b -> $body

pull/1265/head
Roland Häder 2022-06-23 07:53:57 +02:00
parent 93267b5b83
commit def2389b57
No known key found for this signature in database
GPG Key ID: C82EDE5DDFA0BA77
1 changed files with 3 additions and 3 deletions

View 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'),