- Fixed bug #860, which prevented lower-case priority values from being
  accepted (thanks to Michelle Crane).
- Added unit tests.
- Also included ChangeLog updates from other fixes that were misseed.
This commit is contained in:
Paul Beckingham 2011-10-16 00:44:24 -04:00
parent aaa8c5e950
commit 45262be011
3 changed files with 71 additions and 0 deletions

View file

@ -466,6 +466,12 @@ void Command::modify_task (
}
}
// Priorities are converted to upper case.
else if (name == "priority")
{
task.set (name, upperCase (value));
}
// Dates are special, maybe.
else if (column->type () == "date")
{