]> git.mxchange.org Git - friendica.git/blobdiff - mod/hcard.php
Merge pull request #7988 from friendica/MrPetovan-notice
[friendica.git] / mod / hcard.php
index e27ea29be4b0f8bc5c3e645aee2a38619a8deda9..013619bcba6ca94a9aeb0d273cf979f3398e3e1f 100644 (file)
@@ -6,19 +6,19 @@ use Friendica\App;
 use Friendica\Core\Config;
 use Friendica\Core\L10n;
 use Friendica\Core\System;
+use Friendica\Core\Session;
 use Friendica\Model\Contact;
 use Friendica\Model\Profile;
 use Friendica\Model\User;
 
 function hcard_init(App $a)
 {
-       $blocked = Config::get('system', 'block_public') && !local_user() && !remote_user();
+       $blocked = Config::get('system', 'block_public') && !Session::isAuthenticated();
 
        if ($a->argc > 1) {
                $which = $a->argv[1];
        } else {
-               notice(L10n::t('No profile') . EOL);
-               return;
+               throw new \Friendica\Network\HTTPException\NotFoundException(L10n::t('No profile'));
        }
 
        $profile = 0;
@@ -41,7 +41,7 @@ function hcard_init(App $a)
        }
 
        if (!$blocked) {
-               $keywords = defaults($a->profile, 'pub_keywords', '');
+               $keywords = $a->profile['pub_keywords'] ?? '';
                $keywords = str_replace([',',' ',',,'], [' ',',',','], $keywords);
                if (strlen($keywords)) {
                        $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n";