diff options
Diffstat (limited to 'web/ajax.cgi')
-rwxr-xr-x | web/ajax.cgi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/ajax.cgi b/web/ajax.cgi index 61f2d649b..e00fe7100 100755 --- a/web/ajax.cgi +++ b/web/ajax.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: ajax.cgi,v 1.12 2009-09-28 15:40:28 louise Exp $ +# $Id: ajax.cgi,v 1.13 2009-10-07 08:18:42 louise Exp $ use strict; use Standard; @@ -36,7 +36,8 @@ sub main { $interval = '6 months'; } my ($pins, $on_map, $around_map, $dist) = Page::map_pins($q, $x, $y, $sx, $sy, $interval); - + my $limit = Cobrand::on_map_list_limit(Page::get_cobrand($q)); + ($on_map, $around_map) = Page::apply_on_map_list_limit($on_map, $around_map, $limit); my $list = ''; my $link = ''; foreach (@$on_map) { |