SF.net SVN: postfixadmin: [287] trunk/edit-mailbox.php
Brought to you by:
christian_boltz,
gingerdog
From: <Gin...@us...> - 2008-01-06 17:12:07
|
Revision: 287 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=287&view=rev Author: GingerDog Date: 2008-01-06 09:12:10 -0800 (Sun, 06 Jan 2008) Log Message: ----------- edit-mailbox.php: Closes #1865124 - too short error was not telling the user the minimum size Modified Paths: -------------- trunk/edit-mailbox.php Modified: trunk/edit-mailbox.php =================================================================== --- trunk/edit-mailbox.php 2008-01-03 21:58:02 UTC (rev 286) +++ trunk/edit-mailbox.php 2008-01-06 17:12:10 UTC (rev 287) @@ -97,7 +97,7 @@ $min_length = $CONF['min_password_length']; if($min_length > 0 && strlen($fPassword) < $min_length) { - flash_error($PALANG['pPasswordTooShort']); + flash_error(sprintf($PALANG['pPasswordTooShort'], $CONF['min_password_length'])); $error = 1; } if($fPassword == $fPassword2) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |