diff options
author | matthew <matthew> | 2009-11-04 19:04:58 +0000 |
---|---|---|
committer | matthew <matthew> | 2009-11-04 19:04:58 +0000 |
commit | 5e919b29af67a7251e52944eb3ebf3a295882dd9 (patch) | |
tree | 657d12bb4f7b81171313901ac36dc0f918ba9270 /web/index.cgi | |
parent | ec216bb639cd998b69aab26ca8acafdb691b0b3a (diff) |
Correct argument.
Diffstat (limited to 'web/index.cgi')
-rwxr-xr-x | web/index.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/index.cgi b/web/index.cgi index 18f67696b..038f721d1 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: index.cgi,v 1.311 2009-11-04 18:53:38 matthew Exp $ +# $Id: index.cgi,v 1.312 2009-11-04 19:04:59 matthew Exp $ use strict; use Standard; @@ -953,7 +953,7 @@ sub display_problem { $vars{problem_title} = ent($problem->{title}); $vars{problem_meta} = Page::display_problem_meta_line($q, $problem); $vars{problem_detail} = Page::display_problem_detail($problem); - $vars{problem_photo} = Page::display_problem_photo($problem); + $vars{problem_photo} = Page::display_problem_photo($q, $problem); my $contact_url = Cobrand::url($cobrand, NewURL($q, -retain => 1, pc => undef, -url=>'/contact?id=' . $input{id}), $q); $vars{unsuitable} = $q->a({rel => 'nofollow', href => $contact_url}, _('Offensive? Unsuitable? Tell us')); |