1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:25:57 +00:00

af_lang_detect: fix dependency includes

This commit is contained in:
Andrew Dolgov
2015-06-19 11:53:56 +03:00
parent 3318d32410
commit 57243a9584

View File

@@ -21,9 +21,9 @@
* @link http://langdetect.blogspot.com/ * @link http://langdetect.blogspot.com/
*/ */
require_once 'lib/languagedetect/Text/LanguageDetect/Exception.php'; require_once __DIR__ . '/Text/LanguageDetect/Exception.php';
require_once 'lib/languagedetect/Text/LanguageDetect/Parser.php'; require_once __DIR__ . '/Text/LanguageDetect/Parser.php';
require_once 'lib/languagedetect/Text/LanguageDetect/ISO639.php'; require_once __DIR__ . '/Text/LanguageDetect/ISO639.php';
/** /**
* Language detection class * Language detection class