diff options
author | matthew <matthew> | 2008-01-15 09:55:07 +0000 |
---|---|---|
committer | matthew <matthew> | 2008-01-15 09:55:07 +0000 |
commit | fb3a45bdd0cd45ac9cfa84e7730e313bc4f1d8af (patch) | |
tree | 775362254c40dc3f431e2639914e3de3c5361609 | |
parent | d5833bd4c1b2c03e794e9067ad0e5bc5c3a1c128 (diff) |
Smaller distances.
-rwxr-xr-x | web/index.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/index.cgi b/web/index.cgi index c5b7d03e9..9674bd519 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.170 2008-01-10 14:05:20 matthew Exp $ +# $Id: index.cgi,v 1.171 2008-01-15 09:55:07 matthew Exp $ use strict; use Standard; @@ -619,7 +619,7 @@ EOF $list = ''; foreach (@$current) { $list .= '<li><a href="' . NewURL($q, id=>$_->{id}, x=>undef, y=>undef) . '">'; - $list .= $_->{title} . ' (c. ' . int($_->{distance}/100+.5)/10 . 'km)'; + $list .= $_->{title} . ' <small>(' . int($_->{distance}/100+.5)/10 . 'km)</small>'; $list .= '</a></li>'; } if (@$current) { @@ -634,7 +634,7 @@ EOF $list = ''; foreach (@$fixed) { $list .= '<li><a href="' . NewURL($q, id=>$_->{id}, x=>undef, y=>undef) . '">'; - $list .= $_->{title} . ' (c. ' . int($_->{distance}/100+.5)/10 . 'km)'; + $list .= $_->{title} . ' <small>(' . int($_->{distance}/100+.5)/10 . 'km)</small>'; $list .= '</a></li>'; } if (@$fixed) { |