diff options
author | JP Rosevear <jpr@ximian.com> | 2001-08-22 04:25:28 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-08-22 04:25:28 +0800 |
commit | 70ee8d0f5850b3ba744d152f6d0666f017737475 (patch) | |
tree | 4497ae853cfea5f5e6923fe55f517016c5dbea1e /calendar/gui/e-itip-control.c | |
parent | ac60c7f9c906c3cd8e8597ebec9d0194f0409983 (diff) | |
download | gsoc2013-evolution-70ee8d0f5850b3ba744d152f6d0666f017737475.tar.gz gsoc2013-evolution-70ee8d0f5850b3ba744d152f6d0666f017737475.tar.zst gsoc2013-evolution-70ee8d0f5850b3ba744d152f6d0666f017737475.zip |
strip the mailto bit for the email address if we display it
2001-08-21 JP Rosevear <jpr@ximian.com>
* gui/e-itip-control.c (write_html): strip the mailto bit for the
email address if we display it
svn path=/trunk/; revision=12355
Diffstat (limited to 'calendar/gui/e-itip-control.c')
-rw-r--r-- | calendar/gui/e-itip-control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 734a10494e..8c153fc116 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -546,7 +546,7 @@ write_html (EItipControl *itip, gchar *itip_desc, gchar *itip_title, gchar *opti cal_component_get_organizer (priv->comp, &organizer); if (organizer.value != NULL) { html = g_strdup_printf (itip_desc, - organizer.cn ? organizer.cn : organizer.value); + organizer.cn ? organizer.cn : itip_strip_mailto (organizer.value)); gtk_html_write (GTK_HTML (priv->html), html_stream, html, strlen(html)); g_free (html); } |