Use normal 1 instead of deferenced for proper inflation

This commit is contained in:
Tom Bloor 2017-09-06 16:12:36 +01:00
parent 8eda4f88b2
commit 6ed0be4801

View file

@ -150,7 +150,7 @@ sub post_upload {
street_name => $validation->param('street_name'), street_name => $validation->param('street_name'),
town => $validation->param('town'), town => $validation->param('town'),
postcode => $validation->param('postcode'), postcode => $validation->param('postcode'),
pending => \"1" pending => 1,
}); });
$organisation = $entity->organisation; $organisation = $entity->organisation;
} }