From: <abe...@us...> - 2017-04-21 19:52:29
|
Revision: 8267 http://sourceforge.net/p/astlinux/code/8267 Author: abelbeck Date: 2017-04-21 19:52:26 +0000 (Fri, 21 Apr 2017) Log Message: ----------- web interface, System tab, set password, increase the 'maxlength' of the password fields. Only related when the 'root' password is at it's default and automatically set to match, as such .htpasswd only matches the first 8 chars (DSA) but the system matches all chars (MD5). Thanks Michael Modified Paths: -------------- branches/1.0/package/webinterface/altweb/admin/system.php Modified: branches/1.0/package/webinterface/altweb/admin/system.php =================================================================== --- branches/1.0/package/webinterface/altweb/admin/system.php 2017-04-20 16:33:24 UTC (rev 8266) +++ branches/1.0/package/webinterface/altweb/admin/system.php 2017-04-21 19:52:26 UTC (rev 8267) @@ -1,6 +1,6 @@ <?php -// Copyright (C) 2008-2016 Lonnie Abelbeck +// Copyright (C) 2008-2017 Lonnie Abelbeck // This is free software, licensed under the GNU General Public License // version 3 as published by the Free Software Foundation; you can // redistribute it and/or modify it under the terms of the GNU @@ -575,7 +575,7 @@ <tr><td style="text-align: center;" colspan="3"> <h2>Set Management Passwords:</h2> </td></tr><tr><td class="dialogText" style="text-align: right;"> - New Password:<input type="password" size="18" maxlength="15" name="pass1" /> + New Password:<input type="password" size="18" maxlength="32" name="pass1" /> </td><td width="30"> </td><td style="text-align: center;"> <select name="user_pass"> <option value="admin">Username: admin</option> @@ -582,7 +582,7 @@ <option value="staff">Username: staff</option> </select> </td></tr><tr><td class="dialogText" style="text-align: right;"> - Confirm Password:<input type="password" size="18" maxlength="15" name="pass2" /> + Confirm Password:<input type="password" size="18" maxlength="32" name="pass2" /> </td><td> </td><td style="text-align: center;"> <input type="submit" value="Set Password" name="submit_password" /> </td></tr></table> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |