diff options
Diffstat (limited to 'web/index.cgi')
-rwxr-xr-x | web/index.cgi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/index.cgi b/web/index.cgi index 32b7de916..62ade26b5 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -760,7 +760,7 @@ EOF url_home => Cobrand::url($cobrand, '/', $q), submit_button => _('Submit') ); - return (Page::template_include('report-form', $q, Page::template_root($q), %vars)); + return (Page::template_include('report-form', $q, Page::template_root($q), %vars), robots => 'noindex,nofollow'); } sub display_location { @@ -889,7 +889,8 @@ sub display_location { ); my %params = ( - rss => [ _('Recent local problems, FixMyStreet'), "/rss/n/$easting,$northing" ] + rss => [ _('Recent local problems, FixMyStreet'), "/rss/n/$easting,$northing" ], + robots => 'index,nofollow', ); return (Page::template_include('map', $q, Page::template_root($q), %vars), %params); |