sanitize single apostrophes

This commit is contained in:
Adarnof 2016-05-11 13:11:57 -04:00
parent 18b1a576d7
commit 921be2d73f

View File

@ -67,6 +67,7 @@ class Phpbb3Manager:
@staticmethod
def __santatize_username(username):
sanatized = username.replace(" ", "_")
sanatized = username.replace("'", "_")
return sanatized.lower()
@staticmethod