- Fixed bug where tag modifications were trying to access a 'tag' attribute,
  instead of the 'name' attribute.
This commit is contained in:
Paul Beckingham 2014-11-01 22:21:18 -04:00
parent a078ad41e8
commit 8e039c4a8a

View file

@ -2122,7 +2122,7 @@ void Task::modify (modType type, bool text_required /* = false */)
// appropriate.
else if (a->hasTag ("TAG"))
{
std::string tag = a->attribute ("tag");
std::string tag = a->attribute ("name");
if (a->attribute ("sign") == "+")
{
context.debug (label + "tags <-- add '" + tag + "'");