]> git.mxchange.org Git - friendica.git/commitdiff
Standards and unneccessary EOL
authorMichael <heluecht@pirati.ca>
Mon, 28 Oct 2019 13:51:38 +0000 (13:51 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 28 Oct 2019 13:51:38 +0000 (13:51 +0000)
mod/openid.php
mod/settings.php

index 1f63a12de1beebf43a7165a9c9db88a510d0dcfa..98748c21d8d7ad9f4861d900754114a0d7ee86b9 100644 (file)
@@ -64,9 +64,9 @@ function openid_content(App $a) {
                        Session::set('openid_server', $open_id_obj->discover($open_id_obj->identity));
 
                        if (intval(Config::get('config', 'register_policy')) === \Friendica\Module\Register::CLOSED) {
-                               notice(L10n::t('Account not found. Please login to your existing account to add the OpenID to it.') . EOL);
+                               notice(L10n::t('Account not found. Please login to your existing account to add the OpenID to it.'));
                        } else {
-                               notice(L10n::t('Account not found. Please register a new account or login to your existing account to add the OpenID to it.') . EOL);
+                               notice(L10n::t('Account not found. Please register a new account or login to your existing account to add the OpenID to it.'));
                        }
 
                        $a->internalRedirect('login');
index be121f6a78e51b197b6b939cb909e73535e769ae..717dac225e7f6f6bf7e5c069e8b1e7d1350d0718 100644 (file)
@@ -577,6 +577,7 @@ function settings_post(App $a)
                $fields['openid'] = '';
                $fields['openidserver'] = '';
        }
+
        if (DBA::update('user', $fields, ['uid' => local_user()])) {
                info(L10n::t('Settings updated.') . EOL);
        }