From 9d7e48602a3d3f66ac174a55f0ed56a7100fd14e Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 24 Sep 2013 17:47:00 +0200 Subject: fix $expiry declaration error (broken in 5.14) --- cgi/index.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgi/index.pl b/cgi/index.pl index 03b2a3b..875ed8a 100644 --- a/cgi/index.pl +++ b/cgi/index.pl @@ -26,7 +26,7 @@ my %default = ( sub get_results { my ( $backend, $city, $stop, $expiry ) = @_; - my $expiry ||= 150; + $expiry ||= 150; my $cache = Cache::File->new( cache_root => '/tmp/vrr-fake', -- cgit v1.2.3