Small survey bug fix to Survey::persistResponseJSON

This commit is contained in:
Patrick Donelan 2009-06-17 07:21:35 +00:00
parent 801efdbda7
commit e44c7bae2e

View file

@ -1940,7 +1940,7 @@ sub persistResponseJSON {
my $self = shift;
my $data = $self->responseJSON->freeze();
$self->session->db->write( 'update Survey_response set responseJSON = ? where Survey_responseId = ?',
[ $data, $self->responseId( { noCreate => 1 } ) ] );
[ $data, $self->responseId( { ignoreRevisionDate => 1 } ) ] );
return;
}