diff options
Diffstat (limited to 'bin/send-reports')
-rwxr-xr-x | bin/send-reports | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/send-reports b/bin/send-reports index d92c10467..e012cc1f0 100755 --- a/bin/send-reports +++ b/bin/send-reports @@ -69,7 +69,7 @@ while (my $row = $unsent->next) { $h{phone_line} = $h{phone} ? _('Phone:') . " $h{phone}\n\n" : ''; if ($row->photo) { $h{has_photo} = _("This web page also contains a photo of the problem, provided by the user.") . "\n\n"; - $h{image_url} = $email_base_url . '/photo?id=' . $row->id; + $h{image_url} = $email_base_url . '/photo/' . $row->id . '.full.jpeg'; } else { $h{has_photo} = ''; $h{image_url} = ''; |