]> git.mxchange.org Git - friendica.git/blobdiff - mod/hcard.php
adding desaturation and transition for forumlist widget
[friendica.git] / mod / hcard.php
index c8b6db455c6e4dab2d1325558c751f3eb6bb1e2a..828eeaf0910a3fdd5338d529eb49fbc6bb51283e 100644 (file)
@@ -8,6 +8,7 @@ use Friendica\Core\L10n;
 use Friendica\Core\System;
 use Friendica\Model\Contact;
 use Friendica\Model\Profile;
+use Friendica\Model\User;
 
 function hcard_init(App $a)
 {
@@ -16,9 +17,7 @@ function hcard_init(App $a)
        if ($a->argc > 1) {
                $which = $a->argv[1];
        } else {
-               notice(L10n::t('No profile') . EOL);
-               $a->error = 404;
-               return;
+               throw new \Friendica\Network\HTTPException\NotFoundException(L10n::t('No profile'));
        }
 
        $profile = 0;
@@ -29,7 +28,7 @@ function hcard_init(App $a)
 
        Profile::load($a, $which, $profile);
 
-       if (!empty($a->profile['page-flags']) && ($a->profile['page-flags'] == Contact::PAGE_COMMUNITY)) {
+       if (!empty($a->profile['page-flags']) && ($a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
                $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
        }
        if (!empty($a->profile['openidserver'])) {