3 declare(strict_types=1);
    42         $concat = 
' keyword ';
    45         foreach ($this->query_parser->getQuotedWords() as $word) {
    49             $where .= $this->db->like($concat, 
'text', 
'%' . $word . 
'%');
    51             #$where .= (" LIKE ('%".$word."%')");    61         foreach ($this->query_parser->getQuotedWords() as $word) {
    66             #$where .= (" LIKE ('%".$word."%')");    67             $where .= $this->db->like($concat, 
'text', 
'%' . $word . 
'%');
    79         $concat = $this->db->concat(
    81                 array(
'title',
'text'),
    82                 array(
'coverage',
'text'))
    88         foreach ($this->query_parser->getQuotedWords() as $word) {
    93             #$where .= (" LIKE ('%".$word."%')");    94             $where .= $this->db->like($concat, 
'text', 
'%' . $word . 
'%');
   101         $concat = 
' description ';
   104         foreach ($this->query_parser->getQuotedWords() as $word) {
   109             #$where .= (" LIKE ('%".$word."%')");   110             $where .= $this->db->like($concat, 
'text', 
'%' . $word . 
'%');
   112         return $where . 
') ';