Thread

Index > Scribe > @ in link creates new mail
Author/Date @ in link creates new mail
dunxd
22/10/2003 4:39am
The following link creates a new message when clicked on rather than opening a browser - I guess this is because of the @.

http://talk.guardian.co.uk/WebX?14@@.685e9480/4
dunxd
22/10/2003 4:44am
Sorry, the link I sent (lifted from an email) doesn't work - should have been

http://talk.guardian.co.uk/WebX?14@@.685e9480

I hadn't read the page before I sent it. Quite amusing if you like public baiting of celebrity faith healers...
fReT
22/10/2003 7:42am
This is fixed. The logic now reads:
IsAnEmail =
strnicmp(Uri, "mailto:", 7) == 0
||
(
    strchr(Uri, '@')
    &&
    ! strchr(Uri, '/')
)
Reply