diff options
author | Daniel Friesel <derf@finalrewind.org> | 2012-10-01 15:34:29 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2012-10-01 15:34:29 +0200 |
commit | 5017a5727cf210abc3c52873543a866b1afdfdfe (patch) | |
tree | 27a50e8f7143aa8052934501b73b9bfd074e707d /cgi | |
parent | e1c45be3f583d8aea54c4d69616c67e600995fbf (diff) |
strip RNV line prefix
Diffstat (limited to 'cgi')
-rw-r--r-- | cgi/index.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/index.pl b/cgi/index.pl index 33fddc7..edb112d 100644 --- a/cgi/index.pl +++ b/cgi/index.pl @@ -105,7 +105,7 @@ sub shorten_line { $line =~ s{ \s* S-Bahn }{}ox; $line =~ s{ ^ ( U | S | SB ) \K \s+ }{}ox; - $line =~ s{ ^ ( STR | Bus ) }{}ox; + $line =~ s{ ^ ( STR | Bus | RNV ) }{}ox; $line =~ s{ ^ \s+ }{}ox; |