From 318a9554c2f9a9663c5b5fd0deb19906663159be Mon Sep 17 00:00:00 2001 From: Sebastian Stal Date: Sun, 29 Jul 2012 15:59:42 -0700 Subject: [PATCH] Remove the double-quote (") from characters used for random inputs --- inc/anti-bot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/anti-bot.php b/inc/anti-bot.php index 81afca1b..ed09f8ac 100644 --- a/inc/anti-bot.php +++ b/inc/anti-bot.php @@ -19,7 +19,7 @@ class AntiBot { if ($uppercase) $chars .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; if ($special_chars) - $chars .= ' ~!@#$%^&*()_+,./;\'[]\\{}|:"<>?=-` '; + $chars .= ' ~!@#$%^&*()_+,./;\'[]\\{}|:<>?=-` '; $chars = str_split($chars);