aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/App/Controller/Root.pm
diff options
context:
space:
mode:
authorEdmund von der Burg <evdb@mysociety.org>2011-04-15 11:25:42 +0100
committerEdmund von der Burg <evdb@mysociety.org>2011-04-15 11:25:42 +0100
commit5bb7634143bd320b20601c3d92efc0b6987a0d8d (patch)
tree43c8035bd7b0d96d5aeaedc4481b62b31bc9868b /perllib/FixMyStreet/App/Controller/Root.pm
parent7a366593576587a6b654ea967e8beefb2dba6b1c (diff)
Handle (e,n) requests to '/'
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Root.pm')
-rw-r--r--perllib/FixMyStreet/App/Controller/Root.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Root.pm b/perllib/FixMyStreet/App/Controller/Root.pm
index 2dc770da5..3280d02b9 100644
--- a/perllib/FixMyStreet/App/Controller/Root.pm
+++ b/perllib/FixMyStreet/App/Controller/Root.pm
@@ -43,7 +43,7 @@ preserve old behaviour.
sub index : Path : Args(0) {
my ( $self, $c ) = @_;
- my @old_param_keys = ( 'pc', 'x', 'y', 'lat', 'lon' );
+ my @old_param_keys = ( 'pc', 'x', 'y', 'e', 'n', 'lat', 'lon' );
my %old_params = ();
foreach my $key (@old_param_keys) {