[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/C4 SearchMarc.pm [rel_2_2]
From: |
paul poulain |
Subject: |
[Koha-cvs] koha/C4 SearchMarc.pm [rel_2_2] |
Date: |
Wed, 14 Dec 2005 15:58:23 +0000 |
CVSROOT: /cvsroot/koha
Module name: koha
Branch: rel_2_2
Changes by: paul poulain <address@hidden> 05/12/14 15:58:23
Modified files:
C4 : SearchMarc.pm
Log message:
removing warning
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/C4/SearchMarc.pm.diff?only_with_tag=rel_2_2&tr1=1.36.2.20&tr2=1.36.2.21&r1=text&r2=text
Patches:
Index: koha/C4/SearchMarc.pm
diff -u koha/C4/SearchMarc.pm:1.36.2.20 koha/C4/SearchMarc.pm:1.36.2.21
--- koha/C4/SearchMarc.pm:1.36.2.20 Wed Dec 14 15:58:03 2005
+++ koha/C4/SearchMarc.pm Wed Dec 14 15:58:23 2005
@@ -254,7 +254,6 @@
foreach my $word (split(/ /, @$value[$i]))
{
# remove the "%" for small word (3
letters. (note : the >4 is due to the % at the end)
- warn "word : $word";
$word =~ s/%//g unless length($word)>4;
unless
(C4::Context->stopwords->{uc($word)} or length($word)<=1) { #it's NOT a
stopword => use it. Otherwise, ignore
push @normal_tags, @$tags[$i];