Browse Source

Merge pull request #62 from stal888/h

Remove the double-quote (") from characters used for random inputs
pull/40/head
Michael 12 years ago
parent
commit
32384cb722
  1. 2
      inc/anti-bot.php

2
inc/anti-bot.php

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

Loading…
Cancel
Save