SF.net SVN: postfixadmin:[1147] trunk
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2011-07-29 23:38:02
|
Revision: 1147 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=1147&view=rev Author: christian_boltz Date: 2011-07-29 23:37:56 +0000 (Fri, 29 Jul 2011) Log Message: ----------- edit-mailbox.php, edit-mailbox.tpl: - fixed undefined variables Modified Paths: -------------- trunk/edit-mailbox.php trunk/templates/edit-mailbox.tpl Modified: trunk/edit-mailbox.php =================================================================== --- trunk/edit-mailbox.php 2011-07-29 23:30:54 UTC (rev 1146) +++ trunk/edit-mailbox.php 2011-07-29 23:37:56 UTC (rev 1147) @@ -46,6 +46,7 @@ if (isset ($_GET['domain'])) $fDomain = escape_string ($_GET['domain']); $pEdit_mailbox_quota_text_error = ""; +$mailbox_password_text_error = ""; if (!(check_owner ($SESSID_USERNAME, $fDomain) || authentication_has_role('global-admin')) ) { Modified: trunk/templates/edit-mailbox.tpl =================================================================== --- trunk/templates/edit-mailbox.tpl 2011-07-29 23:30:54 UTC (rev 1146) +++ trunk/templates/edit-mailbox.tpl 2011-07-29 23:37:56 UTC (rev 1147) @@ -7,8 +7,8 @@ <tr> <td class="label"><label>{$PALANG.pEdit_mailbox_username}:</label></td> <td><em>{$fUsername}</em></td> - <td>{$pEdit_mailbox_username_text}</td> <td> </td> + <td> </td> </tr> <tr> <td class="label"><label>{$PALANG.pEdit_mailbox_password}:</label></td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |