diff options
author | Matthew Somerville <matthew@mysociety.org> | 2010-10-06 17:27:43 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2010-10-06 17:27:43 +0100 |
commit | e76ec8d8ac4e9035c58d9885df5ebfddeaf4c68c (patch) | |
tree | c0a41d9d0da314af64aa15019d455b2acddc7b66 | |
parent | c00fd45ce3b8cb41836a0b1bcb154dfa4036306a (diff) |
Update photo size same as problem photos.
-rw-r--r-- | perllib/Page.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm index 5016b7d4d..4d8c3c6b7 100644 --- a/perllib/Page.pm +++ b/perllib/Page.pm @@ -900,7 +900,7 @@ sub display_problem_updates($$) { my $cobrand = get_cobrand($q); my $display_photos = Cobrand::allow_photo_display($cobrand); if ($display_photos && $row->{has_photo}) { - $out .= '<p><img alt="" height=100 src="/photo?tn=1;c=' . $row->{id} . '"></p>'; + $out .= '<p><img alt="" height=100 src="/photo?c=' . $row->{id} . '"></p>'; } $out .= '</div>'; $out .= '</div>'; |