]> git.mxchange.org Git - friendica.git/commitdiff
Added characters to the disallowed hashtag characters
authorMichael Vogel <icarus@dabo.de>
Tue, 11 Feb 2020 22:14:26 +0000 (23:14 +0100)
committerMichael Vogel <icarus@dabo.de>
Tue, 11 Feb 2020 22:14:26 +0000 (23:14 +0100)
include/items.php

index 91165344af8602540ee5d86bcfa7e0db8f362f23..422c4bc050f91b8bb658cce1df1c1f99d140a9e3 100644 (file)
@@ -89,8 +89,7 @@ function add_page_info_data(array $data, $no_photos = false)
                $hashtags = "\n";
                foreach ($data["keywords"] as $keyword) {
                        /// @TODO make a positive list of allowed characters
-                       $hashtag = str_replace([" ", "+", "/", ".", "#", "'", "’", "`", "(", ")", "„", "“"],
-                                               ["", "", "", "", "", "", "", "", "", "", "", ""], $keyword);
+                       $hashtag = str_replace([' ', '+', '/', '.', '#', '@', "'", '"', '’', '`', '(', ')', '„', '“'], '', $keyword);
                        $hashtags .= "#[url=" . DI::baseUrl() . "/search?tag=" . $hashtag . "]" . $hashtag . "[/url] ";
                }
        }