From c978baf36a6fadd1152371b23db9b7734eb77cdd Mon Sep 17 00:00:00 2001 From: Owen Clarke Date: Thu, 15 Dec 2011 21:06:46 -0500 Subject: [PATCH] Bug - Fixed bug that was not properly evaluating cases where recurrence was being removed from a task. Signed-off-by: Paul Beckingham --- src/commands/CmdModify.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands/CmdModify.cpp b/src/commands/CmdModify.cpp index fe7d3b274..7e4584570 100644 --- a/src/commands/CmdModify.cpp +++ b/src/commands/CmdModify.cpp @@ -92,7 +92,6 @@ int CmdModify::execute (std::string& output) throw std::string (STRING_CMD_MODIFY_REM_DUE); if (before.has ("recur") && - task->has ("recur") && (!task->has ("recur") || task->get ("recur") == "")) throw std::string (STRING_CMD_MODIFY_REC_ALWAYS);