Hashtags not always converted to links
-
Where a hashtag is the first word on a line, it’s not shown as a link.
This is because the string that’s used as the hashtag actually starts with a newline character. I fixed this by changing line 174 of FFWDModelBlog_style.php to remove newline characters before testing for the # marker:
if(strpos(preg_replace("/\n/",'',$str[$i]),'#')===0) {
My fix will be overwritten by any new version, so I hope this suggestion might be incorporated in the source code.
- The topic ‘Hashtags not always converted to links’ is closed to new replies.