diff options
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/groupwise-send-options/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/groupwise-send-options/send-options.c | 2 |
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) ; } |