diff options
author | Dave Arter <davea@mysociety.org> | 2016-07-07 11:46:39 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2016-07-08 13:29:47 +0100 |
commit | ffa79bdd4b4f18fc535de212d9e4b35af858e91b (patch) | |
tree | b08e3be68bb016119901d91b841ec336eb964b2c | |
parent | 39f26284b206f7d93e6d9d0224fdb7388e8310f3 (diff) |
[Zurich] Don’t include unpublished photos in CSV export
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Zurich.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Zurich.pm b/perllib/FixMyStreet/Cobrand/Zurich.pm index 2e4a167db..d13408321 100644 --- a/perllib/FixMyStreet/Cobrand/Zurich.pm +++ b/perllib/FixMyStreet/Cobrand/Zurich.pm @@ -1163,7 +1163,7 @@ sub admin_stats { $public_response =~ s{\r?\n}{ <br/> }g if $public_response; # Assemble photo URL, if report has a photo - my $media_url = @{$report->photos} ? ($c->cobrand->base_url . $report->photos->[0]->{url}) : ''; + my $media_url = ( @{$report->photos} && $c->cobrand->allow_photo_display($report) ) ? ($c->cobrand->base_url . $report->photos->[0]->{url}) : ''; my @columns = ( $report->id, |