diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-08-29 20:54:11 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-08-29 20:54:54 +0200 |
commit | 6a671d45390c883d994defdaa544405223b8dc29 (patch) | |
tree | 31d7e142891749e2e3256e1cab6b325fbb360d05 /lib/DBInfoscreen/Controller/Static.pm | |
parent | fab688d0da2242a2dc9145c82eafc0a9877d3f74 (diff) |
geostop: always show hafas and iris stops
Diffstat (limited to 'lib/DBInfoscreen/Controller/Static.pm')
-rw-r--r-- | lib/DBInfoscreen/Controller/Static.pm | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/DBInfoscreen/Controller/Static.pm b/lib/DBInfoscreen/Controller/Static.pm index 4560d02..22f2034 100644 --- a/lib/DBInfoscreen/Controller/Static.pm +++ b/lib/DBInfoscreen/Controller/Static.pm @@ -42,23 +42,8 @@ sub redirect { sub geostop { my ($self) = @_; - my ( $api_link, $api_text, $api_icon ); - if ( $self->param('hafas') ) { - $api_link = '/_autostop'; - $api_text = 'Auf Bahnverkehr wechseln'; - $api_icon = 'directions_bus'; - } - else { - $api_link = '/_autostop?hafas=1'; - $api_text = 'Auf Nahverkehr wechseln'; - $api_icon = 'train'; - } - $self->render( 'geostop', - api_link => $api_link, - api_text => $api_text, - api_icon => $api_icon, with_geostop => 1, hide_opts => 1 ); |