]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/HCard.php
Merge remote-tracking branch 'upstream/develop' into api4
[friendica.git] / src / Module / HCard.php
index 7dabf6c692d4dd8354daf75d4b22b41bbefae346..110371ee9595851d67cbacbaf21ed131e745213f 100644 (file)
@@ -36,12 +36,12 @@ class HCard extends BaseModule
 {
        public function content(): string
        {
-               if ((local_user()) && (static::$parameters['action'] ?? '') === 'view') {
+               if ((local_user()) && ($this->parameters['action'] ?? '') === 'view') {
                        // A logged in user views a profile of a user
                        $nickname = DI::app()->getLoggedInUserNickname();
-               } elseif (empty(static::$parameters['action'])) {
+               } elseif (empty($this->parameters['action'])) {
                        // Show the profile hCard
-                       $nickname = static::$parameters['profile'];
+                       $nickname = $this->parameters['profile'];
                } else {
                        throw new HTTPException\NotFoundException(DI::l10n()->t('No profile'));
                }