1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:15:55 +00:00

include title when detecting article language

This commit is contained in:
Andrew Dolgov
2013-09-17 12:28:31 +04:00
parent 4f71d7431c
commit 1357a263be

View File

@@ -572,7 +572,7 @@
print "\n";
}
$entry_language = $lang->detect($entry_content, 1);
$entry_language = $lang->detect($entry_title . " " . $entry_content, 1);
if (count($entry_language) > 0) {
$entry_language = array_keys($entry_language);