Hi!
For those of you that run forums (version 9.60) in a nordic language, the new regular expressions doesn´t allow charatchers like "æ, ø, å" by default, which is important for a better indexing by searchengins.
For at quick fix you could add following to the "functions/functions_filters.asp" around line 1066:
strInputEntry = Replace(strInputEntry, "á", "a", 1, -1, 1)
strInputEntry = Replace(strInputEntry, "é", "e", 1, -1, 1)
strInputEntry = Replace(strInputEntry, "ó", "o", 1, -1, 1)
strInputEntry = Replace(strInputEntry, "§", "", 1, -1, 1)
strInputEntry = Replace(strInputEntry, "æ", "ae", 1, -1, 1)
strInputEntry = Replace(strInputEntry, "ø", "oe", 1, -1, 1)
strInputEntry = Replace(strInputEntry, "å", "aa", 1, -1, 1)
strInputEntry = Replace(strInputEntry, "ä", "ae", 1, -1, 1)
strInputEntry = Replace(strInputEntry, "ö", "oe", 1, -1, 1)
strInputEntry = Replace(strInputEntry, "ü", "eu", 1, -1, 1)
strInputEntry = Replace(strInputEntry, "ß", "ss", 1, -1, 1)
or edit the expressions rules if you like
Have a nice day

Edited by klr3 - 10 July 2009 at 12:53pm