]> git.mxchange.org Git - friendica.git/blobdiff - include/tags.php
Better handling of the network field in the item table.
[friendica.git] / include / tags.php
index a06504fbe3631929f2b896c3302e6ccf78859620..e5bc29cd4f5db6bb13662e4c1a6f35db8dde2935 100644 (file)
@@ -83,7 +83,7 @@ function create_tags_from_item($itemid) {
                        if(ctype_digit(substr(trim($tag),1)))
                                continue;
                        // try to ignore html hex escapes, e.g. #x2317
-                       if((substr(trim($tag),1,1) == 'x' || substr(trim($tag),1,1) == 'X') && ctype_digit(substr(trim($tag,2))))
+                       if((substr(trim($tag),1,1) == 'x' || substr(trim($tag),1,1) == 'X') && ctype_digit(substr(trim($tag),2)))
                                continue;
                        $type = TERM_HASHTAG;
                        $term = substr($tag, 1);