Topic: How to forbid certain characters from being in subject title & body?
I get spammed a lot with a ? character, and want it to not allow posting if that character is in either the subject title, or body
TIA
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 troubleshooting → How to forbid certain characters from being in subject title & body?
I get spammed a lot with a ? character, and want it to not allow posting if that character is in either the subject title, or body
TIA
bump
i(strpos($message, "?"))
message('You can't use this character');
Put this somewhere where it's useful.
I don't think that would work, because strpos can return both 0 (the character(s) is/are at the 0th position) or false.
You would want
if (strpos($message, "?") !== false)
message('You can't use this character');
Otherwise, by putting it at the beginning of the string the check could be circumvented I believe
PunBB Forums → PunBB 1.2 troubleshooting → How to forbid certain characters from being in subject title & body?
Powered by PunBB, supported by Informer Technologies, Inc.