diff options
author | Bharath Acharya <abharath@novell.com> | 2010-09-14 12:34:30 +0800 |
---|---|---|
committer | Bharath Acharya <abharath@novell.com> | 2010-09-14 12:34:30 +0800 |
commit | 70127d9cb8adbe948a34539eb8a9d330f293764e (patch) | |
tree | 1b77eefb5b6341c7604efbfe8f721f4260aa1c13 | |
parent | 4074ffa416ce27a1e3e85ec049a149d8323093c1 (diff) | |
download | gsoc2013-evolution-70127d9cb8adbe948a34539eb8a9d330f293764e.tar.gz gsoc2013-evolution-70127d9cb8adbe948a34539eb8a9d330f293764e.tar.zst gsoc2013-evolution-70127d9cb8adbe948a34539eb8a9d330f293764e.zip |
Bug #624321 - Reply requested today does not work.
Do not check for the "reply_within" if it is not the "convenient" option.
0 can be an option too.
-rw-r--r-- | plugins/groupwise-features/mail-send-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/groupwise-features/mail-send-options.c b/plugins/groupwise-features/mail-send-options.c index 8b59946330..7c31b6e585 100644 --- a/plugins/groupwise-features/mail-send-options.c +++ b/plugins/groupwise-features/mail-send-options.c @@ -71,7 +71,7 @@ feed_input_data (ESendOptionsDialog * dialog, gint state, gpointer data) if (dialog->data->gopts->reply_enabled) { if (dialog->data->gopts->reply_convenient) e_msg_composer_add_header (comp, X_REPLY_CONVENIENT ,"1" ); - else if (dialog->data->gopts->reply_within) { + else { time_t t; t = add_day_to_time (time (NULL), dialog->data->gopts->reply_within); strftime (value, 17, "%Y%m%dT%H%M%SZ", gmtime (&t)); |