diff options
author | Daniel Friesel <derf@finalrewind.org> | 2015-05-16 18:14:33 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2015-05-16 18:14:33 +0200 |
commit | 197959a429eeb9292b1ed3b3866529035c800321 (patch) | |
tree | 5d98720a878bb9ee4c1c4362a076fd16a577434e | |
parent | ad57cde2ba36e61ee108a481159974cc71bbc3ee (diff) |
admode=arr: fix typo in function name
-rw-r--r-- | index.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -224,7 +224,7 @@ sub handle_request { if ( $admode eq 'arr' ) { @results = sort { ( $a->arrival // $a->departure ) - <=> ( $b->arrival // $b->depearture ) + <=> ( $b->arrival // $b->departure ) } @results; } else { |