- Fixed bug #1023, which applied default.project and default.priority during
  modification (thanks to Christoph Lange).
- Added unit tests.
- Added Christoph to the AUTHORS file.
This commit is contained in:
Paul Beckingham
2012-07-04 16:44:16 -04:00
parent d16f434899
commit b0b8bfe1d2
6 changed files with 80 additions and 6 deletions

View File

@@ -477,7 +477,7 @@ void TDB2::add (Task& task)
void TDB2::modify (Task& task)
{
// Ensure the task is consistent, and provide defaults if necessary.
task.validate ();
task.validate (false);
// Find task, overwrite it.
Task original;