aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorBharath Acharya <abharath@novell.com>2010-09-14 12:34:30 +0800
committerBharath Acharya <abharath@novell.com>2010-09-14 12:34:30 +0800
commit70127d9cb8adbe948a34539eb8a9d330f293764e (patch)
tree1b77eefb5b6341c7604efbfe8f721f4260aa1c13 /plugins
parent4074ffa416ce27a1e3e85ec049a149d8323093c1 (diff)
downloadgsoc2013-evolution-70127d9cb8adbe948a34539eb8a9d330f293764e.tar
gsoc2013-evolution-70127d9cb8adbe948a34539eb8a9d330f293764e.tar.gz
gsoc2013-evolution-70127d9cb8adbe948a34539eb8a9d330f293764e.tar.bz2
gsoc2013-evolution-70127d9cb8adbe948a34539eb8a9d330f293764e.tar.lz
gsoc2013-evolution-70127d9cb8adbe948a34539eb8a9d330f293764e.tar.xz
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.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/groupwise-features/mail-send-options.c2
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));