aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorVivek Jain <jvivek@novell.com>2005-03-18 13:53:53 +0800
committerJain Vivek <jvivek@src.gnome.org>2005-03-18 13:53:53 +0800
commitf364fb58850edbe6fa49792868e9af3d0356b518 (patch)
treea47bffd4bbc5be593a68a27921b44ec3d545332e /plugins
parentd2033ff62526b5aab9fc3d369a45816127856899 (diff)
downloadgsoc2013-evolution-f364fb58850edbe6fa49792868e9af3d0356b518.tar
gsoc2013-evolution-f364fb58850edbe6fa49792868e9af3d0356b518.tar.gz
gsoc2013-evolution-f364fb58850edbe6fa49792868e9af3d0356b518.tar.bz2
gsoc2013-evolution-f364fb58850edbe6fa49792868e9af3d0356b518.tar.lz
gsoc2013-evolution-f364fb58850edbe6fa49792868e9af3d0356b518.tar.xz
gsoc2013-evolution-f364fb58850edbe6fa49792868e9af3d0356b518.tar.zst
gsoc2013-evolution-f364fb58850edbe6fa49792868e9af3d0356b518.zip
**Fixes #73473 user proper entry to calculate the date of reply requested
2005-03-18 Vivek Jain <jvivek@novell.com> **Fixes #73473 * send-options.c :(org_gnome_compose_send_options) user proper entry to calculate the date of reply requested svn path=/trunk/; revision=29058
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/groupwise-send-options/ChangeLog6
-rw-r--r--plugins/groupwise-send-options/send-options.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/plugins/groupwise-send-options/ChangeLog b/plugins/groupwise-send-options/ChangeLog
index e1a195818c..00b9b221fd 100755
--- a/plugins/groupwise-send-options/ChangeLog
+++ b/plugins/groupwise-send-options/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-18 Vivek Jain <jvivek@novell.com>
+
+ **Fixes #73473
+ * send-options.c :(org_gnome_compose_send_options)
+ user proper entry to calculate the date of reply requested
+
2005-03-09 Sankar P <psankar@novell.com>
* send-options.c: (org_gnome_compose_send_options)
diff --git a/plugins/groupwise-send-options/send-options.c b/plugins/groupwise-send-options/send-options.c
index d57b85193b..75f6b5a2ce 100644
--- a/plugins/groupwise-send-options/send-options.c
+++ b/plugins/groupwise-send-options/send-options.c
@@ -97,7 +97,7 @@ org_gnome_compose_send_options (EPlugin *ep, EMMenuTargetWidget *t)
e_msg_composer_add_header (comp, X_REPLY_CONVENIENT ,"1" ) ;
else if (dialog->data->gopts->reply_within) {
time_t t;
- t = add_day_to_time (time (NULL), dialog->data->gopts->reply_convenient);
+ t = add_day_to_time (time (NULL), dialog->data->gopts->reply_within);
strftime (value, 17, "%Y%m%dT%H%M%SZ", gmtime (&t));
e_msg_composer_add_header (comp, X_REPLY_WITHIN , value) ;
}