I recently downloaded the Dynamic Signatures package from here, and after getting everything up and perfect...I realized theres a major bug in it. I doesn't allow usernames with spaces in them.
I found the problem, but don't know what to change it to. Can anyone help?
Heres the problem Lines:
CODE
// Replace underscores with spaces, so we know what we're dealing with.
$rsn = str_replace("_", " ", $rsn);
// If it isn't alphanumberic, or it isn't 12 or fewer characters, stop the script.
if(!ctype_alnum($rsn) || strlen($rsn) > 12) {
die("You did not enter a valid username!");
}
