mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
Merge remote-tracking branch 'origin/develop' into feature/backoffice-full-moon-design
# Conflicts: # composer.json # css/light-grey.scss # lib/composer/autoload_classmap.php # lib/composer/autoload_static.php
This commit is contained in:
@@ -586,7 +586,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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Save search to history
|
||||
|
||||
Reference in New Issue
Block a user