diff options
author | Ermal Luçi <eri@pfsense.org> | 2008-10-22 16:56:53 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2008-10-22 16:56:53 +0000 |
commit | 4d18eb07e7f303686806a6a49333513180386826 (patch) | |
tree | 7ecfbe3710130ee0d3bbd88758bedfcea78ab3e7 /usr | |
parent | 4c3f9403410835e34d5f50405f0092b5134ddcca (diff) | |
download | pfsense-4d18eb07e7f303686806a6a49333513180386826.zip pfsense-4d18eb07e7f303686806a6a49333513180386826.tar.gz |
More fixes on checkboxes.
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/system_advanced_admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/system_advanced_admin.php b/usr/local/www/system_advanced_admin.php index 28491ea..df288b7 100644 --- a/usr/local/www/system_advanced_admin.php +++ b/usr/local/www/system_advanced_admin.php @@ -304,7 +304,7 @@ function prot_change() { <tr> <td width="22%" valign="top" class="vncell">Authentication Method</td> <td width="78%" class="vtable"> - <input name="sshdkeyonly" type="checkbox" id="sshdkeyonly" value="yes" <?php if (isset($pconfig['sshdkeyonly'])) echo "checked"; ?> /> + <input name="sshdkeyonly" type="checkbox" id="sshdkeyonly" value="yes" <?php if ($pconfig['sshdkeyonly']) echo "checked"; ?> /> <strong>Disable Password login for Secure Shell (rsa key only)</strong> <br/> When enabled, authorized keys need to be configured for each |