mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-22 01:58:47 +02:00
Merge branch 'support/2.7' into develop
This commit is contained in:
@@ -576,7 +576,13 @@ try
|
||||
else
|
||||
{
|
||||
// Split the text on the blanks and treat this as a search for <word1> AND <word2> AND <word3>
|
||||
$aFullTextNeedles = explode(' ', $sFullText);
|
||||
$aExplodedFullTextNeedles = explode(' ', $sFullText);
|
||||
$aFullTextNeedles = [];
|
||||
foreach ($aExplodedFullTextNeedles as $sValue) {
|
||||
if (strlen($sValue) > 0) {
|
||||
$aFullTextNeedles[] = $sValue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Check the needle length
|
||||
|
||||
Reference in New Issue
Block a user