]> git.mxchange.org Git - friendica.git/commitdiff
changed priority of messages
authorMichael <heluecht@pirati.ca>
Wed, 8 Jan 2020 22:36:31 +0000 (22:36 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 8 Jan 2020 22:36:31 +0000 (22:36 +0000)
include/enotify.php
src/Content/Text/BBCode.php

index 50e23930e945ffca8eeff4f804d37c37ee6dbac4..63bdd97c2fe3701d8e863fa8a05a5cc4e86c2e89 100644 (file)
@@ -184,10 +184,10 @@ function notification($params)
                // First go for the general message
 
                // "George Bull's post"
-               if ($params['activity']['explicit_tagged']) {
-                       $message = '%1$s tagged you on %2$s\'s %3$s %4$s';
-               } elseif ($params['activity']['origin_comment']) {
+               if ($params['activity']['origin_comment']) {
                        $message = '%1$s replied to you on %2$s\'s %3$s %4$s';
+               } elseif ($params['activity']['explicit_tagged']) {
+                       $message = '%1$s tagged you on %2$s\'s %3$s %4$s';
                } else {
                        $message = '%1$s commented on %2$s\'s %3$s %4$s';
                }
@@ -198,10 +198,10 @@ function notification($params)
 
                // "your post"
                if ($params['activity']['origin_thread']) {
-                       if ($params['activity']['explicit_tagged']) {
-                               $message = '%1$s tagged you on your %2$s %3$s';
-                       } elseif ($params['activity']['origin_comment']) {
+                       if ($params['activity']['origin_comment']) {
                                $message = '%1$s replied to you on your %2$s %3$s';
+                       } elseif ($params['activity']['explicit_tagged']) {
+                               $message = '%1$s tagged you on your %2$s %3$s';
                        } else {
                                $message = '%1$s commented on your %2$s %3$s';
                        }
@@ -209,10 +209,10 @@ function notification($params)
                        $dest_str = $l10n->t($message, $params['source_name'], $item_post_type, $title);
                // "their post"
                } elseif ($item['author-link'] == $params['source_link']) {
-                       if ($params['activity']['explicit_tagged']) {
-                               $message = '%1$s tagged you on their %2$s %3$s';
-                       } elseif ($params['activity']['origin_comment']) {
+                       if ($params['activity']['origin_comment']) {
                                $message = '%1$s replied to you on their %2$s %3$s';
+                       } elseif ($params['activity']['explicit_tagged']) {
+                               $message = '%1$s tagged you on their %2$s %3$s';
                        } else {
                                $message = '%1$s commented on their %2$s %3$s';
                        }
index 51fa08ad3d3afe9fbdb06c580b8384c267eff0f6..46eb95bd308d2f9e13c78a6fec41ea2125fc08de 100644 (file)
@@ -967,6 +967,9 @@ class BBCode
                                $attributes['avatar']   = ($author_contact['micro'] ?? '') ?: $attributes['avatar'];
                                $attributes['profile']  = ($author_contact['url']   ?? '') ?: $attributes['profile'];
 
+                               // $author_contact['url'] could be empty. So then we fill it with the profile
+                               $author_contact['url']  = ($attributes['profile']   ?? '') ?: $author_contact['url'];
+
                                if ($attributes['avatar']) {
                                        $attributes['avatar'] = ProxyUtils::proxifyUrl($attributes['avatar'], false, ProxyUtils::SIZE_THUMB);
                                }