CVS commit by mueller: no worky M +2 -2 simple_search.pl 1.25 --- bugs/bugz/simple_search.pl #1.24:1.25 @@ -48,5 +48,5 @@ $terms = ""; foreach my $term (@uterms) { - if( length($term) < 3 ) { # 4 is a MySQL compile-time constant + if( length($term) < 4 ) { # 4 is a MySQL compile-time constant push(@ignored_terms, $term); } else { @@ -57,5 +57,5 @@ if( scalar(@ignored_terms) > 0 ) { $vars->{'warning'} = '

The following words have been ignored because '. - 'of they are shorter than the minimum word length (3 characters): '. + 'of they are shorter than the minimum word length (4 characters): '. html_quote(join(', ', @ignored_terms)). '

';