From 65164295778caa2c4e623e7c8e195f2aa3560121 Mon Sep 17 00:00:00 2001
From: Marius Burkard <m.burkard@pixcept.de>
Date: Thu, 07 Apr 2016 13:19:58 -0400
Subject: [PATCH] - Changed 0000-00-00 date and datetime values to NULL (mySQL compatibility), Fixes: #3690
---
interface/web/js/scrigo.js.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/interface/web/js/scrigo.js.php b/interface/web/js/scrigo.js.php
index a30a9ec..d5af589 100644
--- a/interface/web/js/scrigo.js.php
+++ b/interface/web/js/scrigo.js.php
@@ -153,9 +153,9 @@
var maxLength = minLength + 5;
var length = getRandomInt(minLength, maxLength);
- var alphachars = "abcdefghijklmnopqrstuvwxyz";
- var upperchars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
- var numchars = "1234567890";
+ var alphachars = "abcdefghijkmnopqrstuvwxyz";
+ var upperchars = "ABCDEFGHJKLMNPQRSTUVWXYZ";
+ var numchars = "23456789";
var specialchars = "!@#_";
if(num_special == undefined) num_special = 0;
--
Gitblit v1.9.1