Also fix #160 in /journey/ stop list

This commit is contained in:
Birte Kristina Friesel 2024-08-26 20:49:04 +02:00
parent f8542fffcd
commit 7b9382a913
No known key found for this signature in database
GPG key ID: 19E6E524EBB177BA

View file

@ -218,10 +218,10 @@
% my $within = 0; % my $within = 0;
% my $at_startstop = 0; % my $at_startstop = 0;
% for my $station (@{$journey->{route}}) { % for my $station (@{$journey->{route}}) {
% if ($station->[0] eq $journey->{from_name}) { % if (($station->[1] and $station->[1] == $journey->{from_eva}) or $station->[0] eq $journey->{from_name}) {
% $within = 1; $at_startstop = 1; % $within = 1; $at_startstop = 1;
% } % }
% elsif ($station->[0] eq $journey->{to_name}) { % elsif (($station->[1] and $station->[1] == $journey->{to_eva}) or $station->[0] eq $journey->{to_name}) {
% $within = 0; $at_startstop = 1; % $within = 0; $at_startstop = 1;
% } % }
% else { % else {
@ -254,7 +254,7 @@
% } % }
</span> </span>
% } % }
% if ($station->[0] eq $journey->{from_name}) { % if (($station->[1] and $station->[1] == $journey->{from_eva}) or $station->[0] eq $journey->{from_name}) {
% $before = 0; % $before = 0;
% } % }
<br/> <br/>