]> git.mxchange.org Git - friendica.git/blobdiff - mod/openid.php
Replace REGISTER_* constants by Module\Register::* ones
[friendica.git] / mod / openid.php
index d20258fa96986ff829bd20f6ea8e4b6ec05cb2fb..7300c686b4b209695cb719cad00847894e536267 100644 (file)
@@ -63,7 +63,7 @@ function openid_content(App $a) {
                        // Successful OpenID login - but we can't match it to an existing account.
                        // New registration?
 
-                       if (intval(Config::get('config', 'register_policy')) === REGISTER_CLOSED) {
+                       if (intval(Config::get('config', 'register_policy')) === \Friendica\Module\Register::CLOSED) {
                                notice(L10n::t('Account not found and OpenID registration is not permitted on this site.') . EOL);
                                $a->internalRedirect();
                        }