|
From: Paul S. O. <ps...@us...> - 2002-05-13 13:27:15
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv2706/includes
Modified Files:
Tag: phpBB-2_0_0
functions_search.php
Log Message:
Minor reduction in search indexing to three letters ...
Index: functions_search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions_search.php,v
retrieving revision 1.8.2.4
retrieving revision 1.8.2.5
diff -C2 -r1.8.2.4 -r1.8.2.5
*** functions_search.php 13 May 2002 01:30:59 -0000 1.8.2.4
--- functions_search.php 13 May 2002 13:27:12 -0000 1.8.2.5
***************
*** 58,63 ****
$entry = str_replace('*', ' ', $entry);
! // 'words' that consist of <=3 or >=20 characters are removed.
! $entry = preg_replace('/\b([a-z0-9]{1,3}|[a-z0-9]{21,})\b/',' ', $entry);
}
--- 58,63 ----
$entry = str_replace('*', ' ', $entry);
! // 'words' that consist of <3 or >20 characters are removed.
! $entry = preg_replace('/\b([a-z0-9]{1,2}|[a-z0-9]{21,})\b/',' ', $entry);
}
|