diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-05-22 20:44:27 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-06-12 15:13:48 +0200 |
commit | ac1e20b1880d57aab2048e670449768d51dbc0b0 (patch) | |
tree | 15da2a88ccae43c2276d84ff37b141a79bc1a42a /Zotlabs | |
parent | ad9fb4d530d02c4e432f14626c1f08fe827255c5 (diff) | |
download | volse-hubzilla-ac1e20b1880d57aab2048e670449768d51dbc0b0.tar.gz volse-hubzilla-ac1e20b1880d57aab2048e670449768d51dbc0b0.tar.bz2 volse-hubzilla-ac1e20b1880d57aab2048e670449768d51dbc0b0.zip |
Module\Setup: Don't access static variable as non static.
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Setup.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index a4204afd7..7ca3f827c 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -46,9 +46,9 @@ class Setup extends \Zotlabs\Web\Controller { } if(x($_POST, 'pass')) { - $this->install_wizard_pass = intval($_POST['pass']); + self::$install_wizard_pass = intval($_POST['pass']); } else { - $this->install_wizard_pass = 1; + self::$install_wizard_pass = 1; } } @@ -239,7 +239,7 @@ class Setup extends \Zotlabs\Web\Controller { )); } - switch ($this->install_wizard_pass){ + switch (self::$install_wizard_pass){ case 1: { // System check $checks = array(); |