From 8bee4753d733a8d2330561172159c1462af31be1 Mon Sep 17 00:00:00 2001
From: ftimme <ft@falkotimme.com>
Date: Fri, 18 May 2012 12:42:55 -0400
Subject: [PATCH] - Avoid too complex passwords by not using special characters.

---
 interface/web/js/scrigo.js.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/interface/web/js/scrigo.js.php b/interface/web/js/scrigo.js.php
index 7e01c7d..4a33f96 100644
--- a/interface/web/js/scrigo.js.php
+++ b/interface/web/js/scrigo.js.php
@@ -555,7 +555,7 @@
 	var newPWField = oldPWField.clone();
 	newPWField.attr('type', 'text').attr('id', 'tmp'+passwordFieldID).insertBefore(oldPWField);
 	oldPWField.remove();
-	newPWField.attr('id', passwordFieldID).val(password(10, true)).trigger('keyup');
+	newPWField.attr('id', passwordFieldID).val(password(10, false)).trigger('keyup');
 }
 
 function checkPassMatch(pwField1,pwField2){

--
Gitblit v1.9.1