Index: trunk/kernel/frontaction.php =================================================================== diff -u -N -r959 -r964 --- trunk/kernel/frontaction.php (.../frontaction.php) (revision 959) +++ trunk/kernel/frontaction.php (.../frontaction.php) (revision 964) @@ -798,7 +798,7 @@ $isExact = (substr($keywords, 0, 1) == '"' && substr($keywords, strlen($keywords) - 1, 1) == '"'); if ($isExact) { - $performSearch = (strlen(trim(str_replace('"', '', $keywords))) >= $length); + $performSearch = (strlen(trim(str_replace('\"', '', $keywords))) >= $length); } else { $key_arr = explode(' ', $keywords); @@ -811,6 +811,7 @@ } $keywords = str_replace(' ', ' ', $keywords); + //$keywords = str_replace('\"', '', $keywords); $performSearch = (strlen($keywords) >= $length); }