diff options
author | Luke Bratch <luke@bratch.co.uk> | 2017-10-01 12:31:59 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2017-10-01 12:31:59 +0100 |
commit | c1e026edbe67ce82aa206562da3ef84bb4ac0f43 (patch) | |
tree | 7e38b826bd62075692b6a3114f94a45a39d6c4af | |
parent | cc498e536b63d3609128b963d03fda5fb77e1a8e (diff) |
Fix HTML for auto increment checkbox
-rw-r--r-- | dns.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -231,7 +231,8 @@ test 300 IN AAAA ::1 ; sha256 = b493d48364afe44d11c0165cf470a4164 $arrincrement = incrementserial($zonefile); if ($arrincrement[0] != $zonefile) { ?> - <input type="checkbox" name="increment" checked>Automatically increment serial number from <?php echo $arrincrement[1] . " to " . $arrincrement[2]; ?>?</input><br> + <input type="checkbox" id="increment" name="increment" value="increment" checked> + <label for="increment">Automatically increment serial number from <?php echo $arrincrement[1] . " to " . $arrincrement[2]; ?>?</label><br> <?php } ?> |