Bug Fix - Bug #243

- Fixed bug that caused due dates and recurrence periods to be quoted on
  export, which then caused confusion on a subsequent import (thanks to
  John Florian).
This commit is contained in:
Paul Beckingham 2009-08-04 16:47:49 -06:00
parent fc8f8957c4
commit b28575625e
3 changed files with 4 additions and 644 deletions

View file

@ -363,12 +363,12 @@ std::string Task::composeCSV () const
out << get ("start") << ","; // No i18n
if (has ("due"))
out << "'" << get ("due") << "',"; // No i18n
out << get ("due") << ","; // No i18n
else
out << ","; // No i18n
if (has ("recur"))
out << "'" << get ("recur") << "',"; // No i18n
out << get ("recur") << ","; // No i18n
else
out << ","; // No i18n