Skip to content

Commit db2d9c4

Browse files
author
Kristan Kenney
committed
Don't add DNS/mail by default with web domains
1 parent 116f5fb commit db2d9c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/templates/admin/add_web.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@
8282
<?php if ((isset($_SESSION['DNS_SYSTEM'])) && (!empty($_SESSION['DNS_SYSTEM']))) {?>
8383
<?php if($panel[$user]['DNS_DOMAINS'] != "0") { ?><tr>
8484
<td class="vst-text input-label">
85-
<label><input type="checkbox" size="20" class="vst-checkbox" name="v_dns" <?php if (empty($v_dns)&&$panel[$user]['DNS_DOMAINS'] != "0") echo "checked=yes"; ?>> <?php print __('DNS Support');?></label>
85+
<label><input type="checkbox" size="20" class="vst-checkbox" name="v_dns" <?php if (empty($v_dns)&&$panel[$user]['DNS_DOMAINS'] != "0") echo "checked=no"; ?>> <?php print __('DNS Support');?></label>
8686
</td>
8787
</tr><?php } ?>
8888
<?php } ?>
8989
<?php if ((isset($_SESSION['IMAP_SYSTEM'])) && (!empty($_SESSION['IMAP_SYSTEM']))) {?>
9090
<?php if($panel[$user]['MAIL_DOMAINS'] != "0") { ?><tr>
9191
<td class="vst-text input-label">
92-
<label><input type="checkbox" size="20" class="vst-checkbox" name="v_mail" <?php if (empty($v_mail)&&$panel[$user]['MAIL_DOMAINS'] != "0") echo "checked=yes"; ?>> <?php print __('Mail Support');?></label>
92+
<label><input type="checkbox" size="20" class="vst-checkbox" name="v_mail" <?php if (empty($v_mail)&&$panel[$user]['MAIL_DOMAINS'] != "0") echo "checked=no"; ?>> <?php print __('Mail Support');?></label>
9393
</td>
9494
</tr><?php } ?>
9595
<?php } ?>

0 commit comments

Comments
 (0)