FIND
- Code: Select all
if (file_exists("{$user->lang_path}/search_ignore_words.$phpEx")){
// include the file containing ignore words
include("{$user->lang_path}/search_ignore_words.$phpEx");
}
REPLACE WITH
- Code: Select all
if (file_exists("{$user->lang_path}{$user->lang_name}/search_ignore_words.$phpEx")){
// include the file containing ignore words
include("{$user->lang_path}{$user->lang_name}/search_ignore_words.$phpEx");
}
$user->lang_path only contains the dir-name of the global language path => "/./../language/"
$user->lang_name contains the path of the language wich the user has setted up => "de/" or "en/" and so on
That's the reason why the search_ignore_words.php has no effect by setting um the keywords

English |
French

