Merge pull request #7386 from MrPetovan/bug/7293-hide-registration-link
Hide registration button on login page when registration are closed
This commit is contained in:
commit
bb83f23e26
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ class Login extends BaseModule
|
|||
$a = self::getApp();
|
||||
$o = '';
|
||||
$reg = false;
|
||||
if ($register) {
|
||||
if ($register && intval($a->getConfig()->get('config', 'register_policy')) !== Register::CLOSED) {
|
||||
$reg = [
|
||||
'title' => L10n::t('Create a New Account'),
|
||||
'desc' => L10n::t('Register')
|
||||
|
|
Loading…
Reference in a new issue