changeset 99:2169c3177f47

Limit the vote key character space even more.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 18 Oct 2013 20:30:55 +0300
parents 0f00192e64af
children 3939cb04bdce
files msite.inc.php
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/msite.inc.php	Fri Oct 18 20:30:37 2013 +0300
+++ b/msite.inc.php	Fri Oct 18 20:30:55 2013 +0300
@@ -468,7 +468,7 @@
 function stGenerateUserKey()
 {
   global $db;
-  $keyChars = "abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789";
+  $keyChars = "abdefghjkmnpqrstwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789";
   
   while (TRUE)
   {