vb 3.8.5
db tagging 1.2.1
Problem:
An email address or URL can screw up the user tagging. If there is a user called "microsoft", and someone puts support@microsoft.com (or a URL, if I recall) in the body, the parser tries to tag the username @microsoft.
It needs to be just a bit smarter. It seems to be this can be accomplished by either detecting if it is the first character of the body (post begins with @ character), or if there was a proceeding space or whitespace. In other words, only tag @microsoft when it is a separate word (so look to see if there is a space/whitespace before the @). If there is an [a-z][0-9] or . or some other character before the @, don't parse it. I think the exception is perhaps a comma. Many people use a comma after the @tagging, but I am talking about before the @ sign.
Something to consider. This has caused a few problems on my board.
Mike
db tagging 1.2.1
Problem:
An email address or URL can screw up the user tagging. If there is a user called "microsoft", and someone puts support@microsoft.com (or a URL, if I recall) in the body, the parser tries to tag the username @microsoft.
It needs to be just a bit smarter. It seems to be this can be accomplished by either detecting if it is the first character of the body (post begins with @ character), or if there was a proceeding space or whitespace. In other words, only tag @microsoft when it is a separate word (so look to see if there is a space/whitespace before the @). If there is an [a-z][0-9] or . or some other character before the @, don't parse it. I think the exception is perhaps a comma. Many people use a comma after the @tagging, but I am talking about before the @ sign.
Something to consider. This has caused a few problems on my board.
Mike