diff options
author | Ermal Luçi <eri@pfsense.org> | 2009-12-26 14:39:40 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2009-12-26 14:39:40 +0000 |
commit | 2248a940278a5bcad64322ca8d8c591968ca51d8 (patch) | |
tree | de324b4dcd274aa487cfde8fb2012b8f7308d719 | |
parent | 78490e8636b1e80a9e34134728015705d18fa634 (diff) | |
download | pfsense-2248a940278a5bcad64322ca8d8c591968ca51d8.zip pfsense-2248a940278a5bcad64322ca8d8c591968ca51d8.tar.gz |
Do not mark non-required fields as required.
-rw-r--r-- | usr/local/www/services_dyndns_edit.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/services_dyndns_edit.php b/usr/local/www/services_dyndns_edit.php index 12df1d5..e5e73b1 100644 --- a/usr/local/www/services_dyndns_edit.php +++ b/usr/local/www/services_dyndns_edit.php @@ -143,7 +143,7 @@ include("head.inc"); </td> </tr> <tr> - <td width="22%" valign="top" class="vncellreq">Disable</td> + <td width="22%" valign="top" class="vncell">Disable</td> <td width="78%" class="vtable"> <input name="enable" type="checkbox" id="enable" value="yes" <?php if ($pconfig['enable']) echo "checked"; ?>> </td> @@ -197,7 +197,7 @@ include("head.inc"); all services support this.</td> </tr> <tr> - <td width="22%" valign="top" class="vncellreq">Wildcards</td> + <td width="22%" valign="top" class="vncell">Wildcards</td> <td width="78%" class="vtable"> <input name="wildcard" type="checkbox" id="wildcard" value="yes" <?php if ($pconfig['wildcard']) echo "checked"; ?>> Enable Wildcard</td> @@ -215,7 +215,7 @@ include("head.inc"); </td> </tr> <tr> - <td width="22%" valign="top" class="vncellreq">Description</td> + <td width="22%" valign="top" class="vncell">Description</td> <td width="78%" class="vtable"> <input name="descr" type="text" class="formfld unknown" id="descr" size="60" value="<?=htmlspecialchars($pconfig['descr']);?>"> </td> |