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 /perllib/Page.pm | |
parent | ec216bb639cd998b69aab26ca8acafdb691b0b3a (diff) |
Correct argument.
Diffstat (limited to 'perllib/Page.pm')
-rw-r--r-- | perllib/Page.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm index 7fdddef5d..e66c279d2 100644 --- a/perllib/Page.pm +++ b/perllib/Page.pm @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: Page.pm,v 1.200 2009-11-04 18:53:37 matthew Exp $ +# $Id: Page.pm,v 1.201 2009-11-04 19:04:58 matthew Exp $ # package Page; @@ -748,7 +748,7 @@ sub _part { } } -sub display_problem_meta_line { +sub display_problem_meta_line($$) { my ($q, $problem) = @_; my $out = ''; if ($q->{site} eq 'emptyhomes') { @@ -793,7 +793,7 @@ sub display_problem_meta_line { return $out; } -sub display_problem_detail { +sub display_problem_detail($) { my $problem = shift; (my $detail = $problem->{detail}) =~ s/\r//g; my $out = ''; @@ -803,7 +803,7 @@ sub display_problem_detail { return $out; } -sub display_problem_photo { +sub display_problem_photo($$) { my ($q, $problem) = @_; my $cobrand = get_cobrand($q); my $display_photos = Cobrand::allow_photo_display($cobrand); @@ -815,7 +815,7 @@ sub display_problem_photo { } # Display information about problem -sub display_problem_text { +sub display_problem_text($$) { my ($q, $problem) = @_; my $out = $q->h1(ent($problem->{title})); @@ -828,7 +828,7 @@ sub display_problem_text { } # Display updates -sub display_problem_updates { +sub display_problem_updates($$) { my ($id, $q) = @_; my $updates = select_all( "select id, name, extract(epoch from created) as created, text, |