aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2007-09-07 15:00:20 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2007-09-07 15:00:20 +0800
commit9841d5bfd279d7f8540f2035fb0fa5b6eddb4138 (patch)
tree35dc2d947cb04f4484771bb80fbcc9f5f0503654
parent3ce527eea4c4cfa51223d0be3708afba8fe10bf0 (diff)
downloadgsoc2013-evolution-9841d5bfd279d7f8540f2035fb0fa5b6eddb4138.tar
gsoc2013-evolution-9841d5bfd279d7f8540f2035fb0fa5b6eddb4138.tar.gz
gsoc2013-evolution-9841d5bfd279d7f8540f2035fb0fa5b6eddb4138.tar.bz2
gsoc2013-evolution-9841d5bfd279d7f8540f2035fb0fa5b6eddb4138.tar.lz
gsoc2013-evolution-9841d5bfd279d7f8540f2035fb0fa5b6eddb4138.tar.xz
gsoc2013-evolution-9841d5bfd279d7f8540f2035fb0fa5b6eddb4138.tar.zst
gsoc2013-evolution-9841d5bfd279d7f8540f2035fb0fa5b6eddb4138.zip
Fixes #273417 (bnc)
svn path=/trunk/; revision=34191
-rw-r--r--plugins/itip-formatter/ChangeLog6
-rw-r--r--plugins/itip-formatter/itip-formatter.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog
index a0f8eb3380..11fe3e1235 100644
--- a/plugins/itip-formatter/ChangeLog
+++ b/plugins/itip-formatter/ChangeLog
@@ -1,3 +1,9 @@
+2007-09-07 Chenthill Palanisamy <pchenthill@novell.com>
+
+ Fixes #273417
+ * itip-formatter.c: (idle_open_cb): Removed the base version
+ while invoking evolution calendar.
+
2007-08-23 Milan Crha <mcrha@redhat.com>
** Fix for bug #329746
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c
index 4d3d221877..79c19e4dc3 100644
--- a/plugins/itip-formatter/itip-formatter.c
+++ b/plugins/itip-formatter/itip-formatter.c
@@ -1550,7 +1550,7 @@ idle_open_cb (gpointer data)
FormatItipPObject *pitip = data;
char *command;
- command = g_strdup_printf ("evolution-%s \"calendar://?startdate=%s&enddate=%s\"", BASE_VERSION,
+ command = g_strdup_printf ("evolution \"calendar://?startdate=%s&enddate=%s\"",
isodate_from_time_t (pitip->start_time), isodate_from_time_t (pitip->end_time));
if (!g_spawn_command_line_async (command, NULL)) {
g_warning ("Could not launch %s", command);