diff options
author | M Somerville <matthew-github@dracos.co.uk> | 2020-08-24 15:04:42 +0100 |
---|---|---|
committer | M Somerville <matthew-github@dracos.co.uk> | 2020-08-24 15:04:42 +0100 |
commit | 17261b1fe0a7970825178abc206e5c67be7625bd (patch) | |
tree | 9460c083e27248e47534b6443bf8121f33b9ffca | |
parent | 51252c8ad919aa7fe0f8c8fe7ac8afadb6de5b18 (diff) |
[Oxfordshire] For Open311, put asset ID at start of detail.
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Oxfordshire.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Oxfordshire.pm b/perllib/FixMyStreet/Cobrand/Oxfordshire.pm index 91c2efdfe..63f114c27 100644 --- a/perllib/FixMyStreet/Cobrand/Oxfordshire.pm +++ b/perllib/FixMyStreet/Cobrand/Oxfordshire.pm @@ -144,7 +144,7 @@ sub open311_pre_send { $self->{ox_original_detail} = $row->detail; if (my $fid = $row->get_extra_field_value('feature_id')) { - my $text = $row->detail . "\n\nAsset Id: $fid\n"; + my $text = "Asset Id: $fid\n\n" . $row->detail; $row->detail($text); } } |