--- trunk/bin/irc-logger.pl 2008/04/05 21:08:27 133 +++ trunk/bin/irc-logger.pl 2008/05/19 11:12:49 137 @@ -1350,7 +1350,7 @@ } else { $html .= join("

", get_from_log( - limit => ( $q->param('last') || $q->param('date') ) ? undef : 100, + limit => ( $q->param('date') ? undef : $q->param('last') || 100 ), search => $search || undef, tag => $q->param('tag') || undef, date => $q->param('date') || undef, @@ -1375,7 +1375,7 @@

See history of all messages.

}; - $response->content( decode('utf-8',$html) ); + $response->content( $html ); warn "<< ", $request->method, " ", $request->uri, " created ", length($html), " bytes\n"; return RC_OK; }