This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".
The branch, master has been updated
via 001cb135542d21481ee83b79dce8812330c341d9 (commit)
from 7945856be9933e27f95b09441577fda72a63d375 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=001cb135542d21481ee83b79dce8812330c341d9
commit 001cb135542d21481ee83b79dce8812330c341d9
Author: Marc-Etienne Vargenau <[email protected]>
Date: Thu Sep 1 15:36:35 2016 +0200
Password: at least 8 characters
diff --git a/src/www/account/lostlogin.php b/src/www/account/lostlogin.php
index 22d3076..43268d8 100644
--- a/src/www/account/lostlogin.php
+++ b/src/www/account/lostlogin.php
@@ -58,8 +58,8 @@ if (!$u || !is_object($u)) {
if (getStringFromRequest("submit")) {
- if (strlen($passwd)<6) {
- exit_error(_('You must supply valid password (at least 6
characters).'),'my');
+ if (strlen($passwd)<8) {
+ exit_error(_('You must supply valid password (at least 8
characters).'),'my');
}
if ($passwd != $passwd2) {
@@ -92,7 +92,7 @@ echo '</p>';
?>
<form action="<?php echo util_make_url('/account/lostlogin.php'); ?>"
method="post">
-<p><?php echo _('New Password (at least 6 characters)'); ?>:
+<p><?php echo _('New Password (at least 8 characters)'); ?>:
<br />
<label for="passwd">
<input id="passwd" type="password" name="passwd"/>
-----------------------------------------------------------------------
Summary of changes:
src/www/account/lostlogin.php | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
FusionForge
_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits