forked from friendica/friendica-addons
Wrong type-hint + renamed $b -> $body
This commit is contained in:
parent
93267b5b83
commit
def2389b57
|
@ -87,7 +87,7 @@ function getWeather($loc, $units = 'metric', $lang = 'en', $appid = '', $cacheti
|
||||||
return $r;
|
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'))) {
|
if (!intval(DI::pConfig()->get(local_user(), 'curweather', 'curweather_enable'))) {
|
||||||
return;
|
return;
|
||||||
|
@ -112,7 +112,7 @@ function curweather_network_mod_init(App $a, array &$b)
|
||||||
$appid = DI::config()->get('curweather', 'appid');
|
$appid = DI::config()->get('curweather', 'appid');
|
||||||
$cachetime = intval(DI::config()->get('curweather', 'cachetime'));
|
$cachetime = intval(DI::config()->get('curweather', 'cachetime'));
|
||||||
|
|
||||||
if ($units === "") {
|
if ($units === '') {
|
||||||
$units = 'metric';
|
$units = 'metric';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -221,7 +221,7 @@ function curweather_addon_admin(App $a, &$o)
|
||||||
$appid = DI::config()->get('curweather', 'appid');
|
$appid = DI::config()->get('curweather', 'appid');
|
||||||
$cachetime = DI::config()->get('curweather', 'cachetime');
|
$cachetime = DI::config()->get('curweather', 'cachetime');
|
||||||
|
|
||||||
$t = Renderer::getMarkupTemplate("admin.tpl", "addon/curweather/" );
|
$t = Renderer::getMarkupTemplate('admin.tpl', 'addon/curweather/' );
|
||||||
|
|
||||||
$o = Renderer::replaceMacros($t, [
|
$o = Renderer::replaceMacros($t, [
|
||||||
'$submit' => DI::l10n()->t('Save Settings'),
|
'$submit' => DI::l10n()->t('Save Settings'),
|
||||||
|
|
Loading…
Reference in a new issue