in reply to a terribly basic question showing my inept skills with regular expressions
with this:$username =~ $1;
It'll both untaint the string, and do what is wanted.$username = $1;
There's still lots of superfluous/horrible stuff in there, but at least, it should work now.
|
|---|