From kde-commits Thu Mar 31 22:43:58 2005 From: Dirk Mueller Date: Thu, 31 Mar 2005 22:43:58 +0000 To: kde-commits Subject: bugs/bugz Message-Id: <20050331224358.4DC9065E () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=111230975632412 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)). '

';