mirror of
https://github.com/friendica/friendica
synced 2025-04-22 07:50:11 +00:00
Refactor dynamic App::getConfig() to static DI::config()
This commit is contained in:
parent
2bb9e46be3
commit
fceb4f3823
21 changed files with 38 additions and 66 deletions
|
@ -88,7 +88,7 @@ class Login extends BaseModule
|
|||
}
|
||||
|
||||
$reg = false;
|
||||
if ($register && intval($a->getConfig()->get('config', 'register_policy')) !== Register::CLOSED) {
|
||||
if ($register && intval(DI::config()->get('config', 'register_policy')) !== Register::CLOSED) {
|
||||
$reg = [
|
||||
'title' => L10n::t('Create a New Account'),
|
||||
'desc' => L10n::t('Register'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue