Skip to content

Commit

Permalink
+ Fixes DISC Last Save Date not storing in international date format (F…
Browse files Browse the repository at this point in the history
…ixes #828).
  • Loading branch information
nairdo committed Feb 7, 2015
1 parent f7cd32c commit 3ad06de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rock/Model/DiscService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ static public void SaveAssessmentResults( Person person, string ABd, string ABi,
Rock.Attribute.Helper.SaveAttributeValue( person, person.Attributes[attrib], personalityType );
break;
case AttributeKeys.LastSaveDate:
Rock.Attribute.Helper.SaveAttributeValue( person, person.Attributes[attrib], RockDateTime.Now.ToString() );
Rock.Attribute.Helper.SaveAttributeValue( person, person.Attributes[attrib], RockDateTime.Now.ToString( "o" ) );
break;
}
}
Expand Down

0 comments on commit 3ad06de

Please sign in to comment.