diff options
author | jskyboo <jack@ron.hog.mooo.info> | 2017-01-24 10:07:18 -0800 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2017-01-25 16:43:07 -0200 |
commit | 3607eac5b40f52f15ecf46101b68f816c1579f3a (patch) | |
tree | b6c938124850f7a9ea726fc1fc56f56f9b1f4128 /src/usr/local/www | |
parent | c977d6b10f9b639a27ab604fb48bb327c1472468 (diff) | |
download | pfsense-3607eac5b40f52f15ecf46101b68f816c1579f3a.zip pfsense-3607eac5b40f52f15ecf46101b68f816c1579f3a.tar.gz |
Changed default state of GPS init command auto correct tool.
(cherry picked from commit 2559f37539cf37221f8fddd7c0b7928e8e3969a8)
Diffstat (limited to 'src/usr/local/www')
-rw-r--r-- | src/usr/local/www/services_ntpd_gps.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/services_ntpd_gps.php b/src/usr/local/www/services_ntpd_gps.php index b72372a..e350a65 100644 --- a/src/usr/local/www/services_ntpd_gps.php +++ b/src/usr/local/www/services_ntpd_gps.php @@ -512,9 +512,9 @@ $section->addInput(new Form_Textarea( $section->addInput(new Form_Checkbox( 'autocorrect_initcmd', null, - 'Auto correct malformed initialization commands. (default: checked).', + 'Auto correct malformed initialization commands. (default: unchecked).', $pconfig['autocorrect_initcmd'] -))->setHelp('Calculates and appends checksum and missing special characters "$" and "*". Disable if causing errors.'); +))->setHelp('Calculates and appends checksum and missing special characters "$" and "*". May not work with some GPS models.'); $group = new Form_Group('NMEA Checksum Calculator'); @@ -662,7 +662,7 @@ events.push(function() { $('#gpsflag4').prop('checked', false); $('#gpssubsec').prop('checked', false); $('#extstatus').prop('checked', true); - $('#autocorrect_initcmd').prop('checked', true); + $('#autocorrect_initcmd').prop('checked', false); } // Show advanced GPS options ============================================== |