Remove the double-quote (") from characters used for random inputs

This commit is contained in:
Sebastian Stal 2012-07-29 15:59:42 -07:00
parent 9f4fd8e445
commit 318a9554c2

View File

@ -19,7 +19,7 @@ class AntiBot {
if ($uppercase) if ($uppercase)
$chars .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; $chars .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
if ($special_chars) if ($special_chars)
$chars .= ' ~!@#$%^&*()_+,./;\'[]\\{}|:"<>?=-` '; $chars .= ' ~!@#$%^&*()_+,./;\'[]\\{}|:<>?=-` ';
$chars = str_split($chars); $chars = str_split($chars);