From 9a30d2663dc693de1dd66fcbbb051f2611b7f159 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 7 Mar 2018 14:00:48 -0500 Subject: [PATCH] [communityhome] Remove extra parameter in communityhome_addon_admin_post() - Add type hint for Friendica\App object --- communityhome/communityhome.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/communityhome/communityhome.php b/communityhome/communityhome.php index 11309635a..a4c956c28 100644 --- a/communityhome/communityhome.php +++ b/communityhome/communityhome.php @@ -6,6 +6,8 @@ * Version: 2.0 * Author: Fabio Comuni */ + +use Friendica\App; use Friendica\Core\Addon; use Friendica\Core\Config; use Friendica\Core\L10n; @@ -37,7 +39,7 @@ function communityhome_getopts() ]; } -function communityhome_addon_admin(&$a, &$o) +function communityhome_addon_admin(App $a, &$o) { $tpl = get_markup_template('settings.tpl', 'addon/communityhome/'); @@ -53,7 +55,7 @@ function communityhome_addon_admin(&$a, &$o) $o = replace_macros($tpl, $ctx); } -function communityhome_addon_admin_post(&$a, &$b) +function communityhome_addon_admin_post(App $a) { if (x($_POST, 'communityhome-submit')) { $opts = communityhome_getopts(); @@ -63,7 +65,7 @@ function communityhome_addon_admin_post(&$a, &$b) } } -function communityhome_home(&$a, &$o) +function communityhome_home(App $a, &$o) { // custom css $a->page['htmlhead'] .= '';