Explorar o código

Ignore hashtags that begin with a ampersand

Fixes #131

This is usually a marker of an HTML entity code.
It is possible for a user to do this on purpose,
but not horribly likely.

i hope
Derek Schmidt %!s(int64=7) %!d(string=hai) anos
pai
achega
41683db2b4
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      app/Util/Lexer/Hashtag.php

+ 1 - 1
app/Util/Lexer/Hashtag.php

@@ -7,7 +7,7 @@ class Hashtag {
   public static function getHashtags($status)
   {  
     $hashtags = false;  
-    preg_match_all("/(#\w+)/u", $status, $matches);
+    preg_match_all("/(?<!&)(#\w+)/u", $status, $matches);
     if ($matches) {
         $res = array_count_values($matches[0]);
         $hashtags = array_keys($res);