From: Steinar H. Gunderson Date: Fri, 28 Nov 2008 13:57:56 +0000 (+0100) Subject: Fix typo. X-Git-Url: https://git.sesse.net/?p=pr0n;a=commitdiff_plain;h=6951b59b735a70aec51ceeab7a188d6f6cf75a9f Fix typo. --- diff --git a/perl/Sesse/pr0n/Listing.pm b/perl/Sesse/pr0n/Listing.pm index a006945..2cb1125 100644 --- a/perl/Sesse/pr0n/Listing.pm +++ b/perl/Sesse/pr0n/Listing.pm @@ -26,7 +26,7 @@ sub handler { # find the last modification my $ref = $dbh->selectrow_hashref('SELECT EXTRACT(EPOCH FROM last_update) AS last_update FROM last_picture_cache WHERE vhost=? ORDER BY last_update DESC LIMIT 1', undef, $r->get_server_name) - or error($r, "Could not any events", 404, "File not found"); + or error($r, "Could not find any events", 404, "File not found"); $r->set_last_modified($ref->{'last_update'}); $r->content_type('text/html; charset=utf-8');