]> git.deb.at Git - deb/packages.git/commitdiff
Don't try to output html in error/debug messages
authorFrank Lichtenheld <frank@lichtenheld.de>
Sun, 7 Oct 2007 20:18:36 +0000 (22:18 +0200)
committerFrank Lichtenheld <frank@lichtenheld.de>
Sun, 7 Oct 2007 20:18:36 +0000 (22:18 +0200)
lib/Packages/CGI.pm
lib/Packages/DoShow.pm

index c29e56ce8b932014b562c56e33c68d6f4c8181c9..beb4e255e9844bc68b4a32006db528e1354e9bd6 100644 (file)
@@ -88,7 +88,7 @@ sub parse_params {
 
     foreach my $param ( keys %params ) {
        
-       debug( "Param <strong>$param</strong>", 2 ) if DEBUG;
+       debug( "Param $param", 2 ) if DEBUG;
 
        my $p_value_orig = $cgi->param($param);
 
index 2e336927df217b2adb978f006b6658656bd56355..51c97e72d0e562127ee14d575457cfcc6d028313 100644 (file)
@@ -68,8 +68,8 @@ sub do_show {
        }
 
        unless (@results || @non_results ) {
-           fatal_error( _g( "No such package." )."<br>".
-                        sprintf( _g( '<a href="%s">Search for the package</a>' ), make_search_url('','keywords='.uri_escape($pkg)) ) );
+           fatal_error( _g( "No such package.") );
+           #sprintf( _g( '<a href="%s">Search for the package</a>' ), make_search_url('','keywords='.uri_escape($pkg)) ) );
        } else {
            my %all_suites;
            foreach (@results, @non_results) {