Improve log message language in Module/Search/Index.php

Co-authored-by: Steffen K9 <admin@libranet.de>
Este commit está contenido en:
Hypolite Petovan 2020-09-20 11:19:03 -04:00 cometido por GitHub
padre 2bd1e8cf65
commit c8f385727e
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -135,7 +135,7 @@ class Index extends BaseSearch
// Don't perform a fulltext or tag search on search results that look like an URL
// Tags don't look like an URL and the fulltext search does only work with natural words
if (parse_url($search, PHP_URL_SCHEME) && parse_url($search, PHP_URL_HOST)) {
Logger::info('Skipping tag and fulltext search since the search looks like an URL.', ['q' => $search]);
Logger::info('Skipping tag and fulltext search since the search looks like a URL.', ['q' => $search]);
notice(DI::l10n()->t('No results.'));
return $o;
}