Browse Source

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

pull/40/head
Sebastian Stal 12 years ago
parent
commit
318a9554c2
  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