aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2024-11-03 08:48:53 +0100
committerHarald Eilertsen <haraldei@anduin.net>2024-11-03 08:48:53 +0100
commit8ab3ad65310abf558b85253c92b015879f31e594 (patch)
treeca3a35c41729f4124c90d3fd219562143caac0d7
parentbf008465ad36797f2349ad2bcea00bdd84f4fcfb (diff)
downloadvolse-hubzilla-8ab3ad65310abf558b85253c92b015879f31e594.tar.gz
volse-hubzilla-8ab3ad65310abf558b85253c92b015879f31e594.tar.bz2
volse-hubzilla-8ab3ad65310abf558b85253c92b015879f31e594.zip
Zotlabs\Module\Setup: Fix deprecation.
Using `self` in callables has been deprecated, so change to proper fully qualified class name.
-rw-r--r--Zotlabs/Module/Setup.php5
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(