X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Ftags.php;h=e5bc29cd4f5db6bb13662e4c1a6f35db8dde2935;hb=17236b18011f6c2fa7df7d1433dd815d4438baf8;hp=a06504fbe3631929f2b896c3302e6ccf78859620;hpb=462f19ccf2eb54306415f03892da6bf4ef1fa7d3;p=friendica.git diff --git a/include/tags.php b/include/tags.php index a06504fbe3..e5bc29cd4f 100644 --- a/include/tags.php +++ b/include/tags.php @@ -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);