diff options
author | Mario <mario@mariovavti.com> | 2024-11-03 10:57:03 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-11-03 10:57:03 +0000 |
commit | 5db3f93be9e9777184609a7f7e6988d36dfc5615 (patch) | |
tree | 113b13ddb540b0740f7f16badd67d2b59842795b /Zotlabs/Module | |
parent | e20327d26760adbea6554268119bc671e0199afb (diff) | |
parent | 8ab3ad65310abf558b85253c92b015879f31e594 (diff) | |
download | volse-hubzilla-5db3f93be9e9777184609a7f7e6988d36dfc5615.tar.gz volse-hubzilla-5db3f93be9e9777184609a7f7e6988d36dfc5615.tar.bz2 volse-hubzilla-5db3f93be9e9777184609a7f7e6988d36dfc5615.zip |
Merge branch 'php8.2-deprecations' into 'dev'
Fix deprecations uncovered by running tests on PHP 8.2
See merge request hubzilla/core!2156
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Setup.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 35079e5e5..5b423f67d 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -263,7 +263,10 @@ class Setup extends \Zotlabs\Web\Controller { $this->check_htaccess($checks); - $checkspassed = array_reduce($checks, "self::check_passed", true); + $checkspassed = array_reduce( + $checks, + "Zotlabs\Module\Setup::check_passed", + true); $tpl = get_markup_template('install_checks.tpl'); $o .= replace_macros($tpl, array( |