diff options
author | matthew <matthew> | 2007-05-02 10:31:42 +0000 |
---|---|---|
committer | matthew <matthew> | 2007-05-02 10:31:42 +0000 |
commit | 2af6c9069b3f993016a2b6bfb94a546bae705015 (patch) | |
tree | 1478efe92141e282781c62fdbed3190c1d7b0cbf | |
parent | 0121b95f4086e338b244ead5301f6265201e0ec7 (diff) |
Bugfix NewURL.
-rwxr-xr-x | web/report.cgi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web/report.cgi b/web/report.cgi index 4e3bafa35..0f179f848 100755 --- a/web/report.cgi +++ b/web/report.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: report.cgi,v 1.8 2007-05-02 10:02:09 matthew Exp $ +# $Id: report.cgi,v 1.9 2007-05-02 10:31:42 matthew Exp $ use strict; require 5.8.0; @@ -64,10 +64,10 @@ sub main { if (!$one_council) { print $q->p('This is a summary of all reports on this site, select \'show only\' to see the reports for just one council.'); } else { - print $q->p('This is a summary of all reports for one council. You can ', - $q->a({href => NewURL($q, all=>1) }, 'see more details'), - ' or go back and ', - $q->a({href => NewURL($q, all=>undef, council=>undef) }, 'show all councils'), + print $q->p('This is a summary of all reports for one council. You can ' . + $q->a({href => NewURL($q, all=>1) }, 'see more details') . + ' or go back and ' . + $q->a({href => NewURL($q, all=>undef, council=>undef) }, 'show all councils') . '.'); } foreach (sort { $areas_info->{$a}->{name} cmp $areas_info->{$b}->{name} } keys %out) { |