diff options
Diffstat (limited to 'perllib')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Oxfordshire.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Oxfordshire.pm b/perllib/FixMyStreet/Cobrand/Oxfordshire.pm index cf88495f8..6021827cb 100644 --- a/perllib/FixMyStreet/Cobrand/Oxfordshire.pm +++ b/perllib/FixMyStreet/Cobrand/Oxfordshire.pm @@ -147,6 +147,11 @@ sub open311_pre_send { my $text = $row->detail . "\n\nAsset Id: $fid\n"; $row->detail($text); } + + if (my $usrn = $row->get_extra_field_value('usrn')) { + my $text = $row->detail . "\n\nUSRN: $usrn\n"; + $row->detail($text); + } } sub open311_post_send { |