]> git.mxchange.org Git - friendica.git/blobdiff - src/Navigation/Notifications/Entity/Notify.php
Merge branch 'develop' into show_image_upload_limit
[friendica.git] / src / Navigation / Notifications / Entity / Notify.php
index 8f8166ab9037cde9152f79c9d8f4a7ba0c718489..1070440073c0c0319dc88b1ea95cb695a3afd1f9 100644 (file)
@@ -134,16 +134,6 @@ class Notify extends BaseEntity
         */
        public static function formatMessage(string $name, string $message): string
        {
-               if ($name != '') {
-                       $pos = strpos($message, $name);
-               } else {
-                       $pos = false;
-               }
-
-               if ($pos !== false) {
-                       $message = substr_replace($message, '{0}', $pos, strlen($name));
-               }
-
-               return $message;
+               return str_replace('{0}', '<span class="contactname">' . strip_tags(BBCode::convert($name)) . '</span>', $message);
        }
 }