diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-13 17:45:32 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-13 17:45:32 +0200 |
commit | 4ec583098a6e600cb6c1c9feecccc59050060d83 (patch) | |
tree | d53cb0e862cecc88ad1fcd4046428ab3f4e719db /lib/DBInfoscreen | |
parent | de532515ae5b847a5d0e00936294d49e1c6fb7db (diff) |
Only show station name in page title
Diffstat (limited to 'lib/DBInfoscreen')
-rw-r--r-- | lib/DBInfoscreen/Controller/Stationboard.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index 9f4e672..be8a4b5 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -245,7 +245,7 @@ sub handle_request { } $self->stash( departures => [] ); - $self->stash( title => 'db-infoscreen' ); + $self->stash( title => 'DBF' ); $self->stash( version => $dbf_version ); if ( defined $station and $station =~ s{ [.] txt $ }{}x ) { @@ -863,7 +863,7 @@ sub handle_request { $template, departures => \@departures, version => $dbf_version, - title => "Abfahrtsmonitor $station_name", + title => $station_name, refresh_interval => $template eq 'app' ? 0 : 120, hide_opts => $hide_opts, hide_low_delay => $hide_low_delay, |