]> git.mxchange.org Git - friendica.git/blobdiff - mod/invite.php
Replace direct accesses to App->config by Config::get/set calls
[friendica.git] / mod / invite.php
index 813dbf7044a33f734918f2bc6316240eb1fb9c4a..bea479a8f7b13d1798e759c94ec8f8e7960017aa 100644 (file)
@@ -126,14 +126,14 @@ function invite_content(App $a) {
 
        $dirloc = Config::get('system', 'directory');
        if (strlen($dirloc)) {
-               if ($a->config['register_policy'] == REGISTER_CLOSED) {
+               if (Config::get('config', 'register_policy') === REGISTER_CLOSED) {
                        $linktxt = L10n::t('Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks.', $dirloc . '/servers');
                } else {
                        $linktxt = L10n::t('To accept this invitation, please visit and register at %s or any other public Friendica website.', System::baseUrl())
                        . "\r\n" . "\r\n" . L10n::t('Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join.', $dirloc . '/servers');
                }
        } else { // there is no global directory URL defined
-               if ($a->config['register_policy'] == REGISTER_CLOSED) {
+               if (Config::get('config', 'register_policy') === REGISTER_CLOSED) {
                        $o = L10n::t('Our apologies. This system is not currently configured to connect with other public sites or invite members.');
                        return $o;
                } else {