SF.net SVN: postfixadmin:[503] trunk/templates/admin_edit-domain.php
Brought to you by:
christian_boltz,
gingerdog
From: <Gin...@us...> - 2008-12-15 21:29:12
|
Revision: 503 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=503&view=rev Author: GingerDog Date: 2008-12-15 21:29:08 +0000 (Mon, 15 Dec 2008) Log Message: ----------- checked=checked is more proper, right? Modified Paths: -------------- trunk/templates/admin_edit-domain.php Modified: trunk/templates/admin_edit-domain.php =================================================================== --- trunk/templates/admin_edit-domain.php 2008-12-15 21:28:41 UTC (rev 502) +++ trunk/templates/admin_edit-domain.php 2008-12-15 21:29:08 UTC (rev 503) @@ -55,13 +55,13 @@ <?php } ?> <tr> <td><?php print $PALANG['pAdminEdit_domain_backupmx'] . ":"; ?></td> - <td><?php $checked = (!empty ($tBackupmx)) ? 'checked' : ''; ?> + <td><?php $checked = (!empty ($tBackupmx)) ? 'checked=checked' : ''; ?> <input class="flat" type="checkbox" name="fBackupmx" <?php print $checked; ?> /></td> <td> </td> </tr> <tr> <td><?php print $PALANG['pAdminEdit_domain_active'] . ":"; ?></td> - <td><?php $checked = (!empty ($tActive)) ? 'checked' : ''; ?> + <td><?php $checked = (!empty ($tActive)) ? 'checked=checked' : ''; ?> <input class="flat" type="checkbox" name="fActive" <?php print $checked; ?> /></td> <td> </td> </tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |