1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-25 07:50:23 +01:00

Merge pull request #62 from stal888/h

Remove the double-quote (") from characters used for random inputs
This commit is contained in:
Michael 2012-07-30 00:19:35 -07:00
commit 4f83915413

View File

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