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
1 changed files with 3 additions and 3 deletions

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