]> git.mxchange.org Git - friendica.git/commitdiff
Improve log message language in Module/Search/Index.php
authorHypolite Petovan <hypolite@mrpetovan.com>
Sun, 20 Sep 2020 15:19:03 +0000 (11:19 -0400)
committerGitHub <noreply@github.com>
Sun, 20 Sep 2020 15:19:03 +0000 (11:19 -0400)
Co-authored-by: Steffen K9 <admin@libranet.de>
src/Module/Search/Index.php

index 712edad0232e95ef6630ac6549158df41ede23cf..7f5c7ab87b049098ce8915561a2d26846489c44b 100644 (file)
@@ -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;
                }