diff options
author | Andre Klapper <a9016009@gmx.de> | 2007-01-27 22:44:48 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2007-01-27 22:44:48 +0800 |
commit | b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7 (patch) | |
tree | 4be2639cfdebc69a2f7cc18749ee6ef455012b9d /e-util/e-html-utils.c | |
parent | 094f34621ab7b77a57f6b588348ced95756e9798 (diff) | |
download | gsoc2013-evolution-b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7.tar.gz gsoc2013-evolution-b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7.tar.zst gsoc2013-evolution-b6e4403f9be3c22cb5d4a4eabe90c23f8a9ad7a7.zip |
identify "sip:" URL's. Fixes bug #396543.
2007-01-27 Andre Klapper <a9016009@gmx.de>
* e-html-utils.c: (e_text_to_html_full):
identify "sip:" URL's. Fixes bug #396543.
svn path=/trunk/; revision=33155
Diffstat (limited to 'e-util/e-html-utils.c')
-rw-r--r-- | e-util/e-html-utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/e-util/e-html-utils.c b/e-util/e-html-utils.c index c79e8f8a92..537f99a75e 100644 --- a/e-util/e-html-utils.c +++ b/e-util/e-html-utils.c @@ -273,6 +273,7 @@ e_text_to_html_full (const char *input, unsigned int flags, guint32 color) !g_ascii_strncasecmp (cur, "file:", 5) || !g_ascii_strncasecmp (cur, "callto:", 7) || !g_ascii_strncasecmp (cur, "h323:", 5) || + !g_ascii_strncasecmp (cur, "sip:", 4) || !g_ascii_strncasecmp (cur, "webcal:", 7)) { tmpurl = url_extract (&cur, TRUE); if (tmpurl) { |