]> git.mxchange.org Git - friendica.git/blobdiff - mod/invite.php
Enforce systen.register_policy value type
[friendica.git] / mod / invite.php
index bea479a8f7b13d1798e759c94ec8f8e7960017aa..d8d98bec28eb0bcd40b4f2bbea1b25845a52ed0f 100644 (file)
@@ -126,14 +126,14 @@ function invite_content(App $a) {
 
        $dirloc = Config::get('system', 'directory');
        if (strlen($dirloc)) {
-               if (Config::get('config', 'register_policy') === REGISTER_CLOSED) {
+               if (intval(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 (Config::get('config', 'register_policy') === REGISTER_CLOSED) {
+               if (intval(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 {