Use normal 1 instead of deferenced for proper inflation
This commit is contained in:
parent
8eda4f88b2
commit
6ed0be4801
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue