Force exact=1 if UserAgent looks like reportbug.
Otherwise it would get confused by the new behaviour
to show non-exact matches per default, too.
The real solution for this is of course to let it
use another format instead of HTML.
bindtextdomain ( 'pdo', $LOCALES );
textdomain( 'pdo' );
+if ($ENV{is_reportbug}) {
+ $input->param('exact', 1);
+ debug( "reportbug detected, set paramater exact to '1'" ) if DEBUG;
+}
+
my $what_to_do = 'show';
my $source = 0;
if (my $path = $input->path_info() || $input->param('PATH_INFO')) {
allow from all
</Location>
+ BrowserMatch reportbug is_reportbug
+
RewriteEngine on
RewriteLog /var/log/apache2/rewrite.log
RewriteLogLevel 0