
|
Posted by Support |
Post Reply | Main Forum | |||
|
In the Configure->Forum Control Policy there is a field named "List of forbidden names separated by |", the forbidden names here can actually be a general regular expression. For our problem, we don't want any characters that is not a digit or alphabet character, the pattern for this is: [^a-zA-Z0-9]
Therefore:
|