This commit is contained in:
2018-09-18 22:44:03 +00:00
parent 7f64c7f274
commit 6771c9f2a1
2 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ namespace AyaNova.Biz
/// </summary>
public static void ProcessKeywords(AyContext ct, long localeId, long objectID, AyaType objectType, bool newRecord, string keyWords, string name)
{
var StopWords = GetStopWords(ct, localeId);
var StopWords = GetLocaleSearchData(ct, localeId);
//Get CJK index bool flag.
//TODO: should this be a property of the locale or a global setting as before??
@@ -53,7 +53,7 @@ namespace AyaNova.Biz
//Get the current stopwords for the user's locale
private static List<string> GetStopWords(AyContext ct, long localeId)
private static List<string> GetLocaleSearchData(AyContext ct, long localeId)
{
//Get stopwords
//Validate locale id, if not right then use default instead