diff options
author | Phil Davis <phil.davis@inf.org> | 2015-10-23 17:34:53 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2015-10-23 17:34:53 +0545 |
commit | 2d911f2c0f4c11d1269e8943ce40228a6252ff5e (patch) | |
tree | 2d7ba6489baf290fe25fd914689ce538594716c1 /src/usr/local | |
parent | 50e6c063e6ec148917ff0bcb0bce8b0a08df5792 (diff) | |
download | pfsense-2d911f2c0f4c11d1269e8943ce40228a6252ff5e.zip pfsense-2d911f2c0f4c11d1269e8943ce40228a6252ff5e.tar.gz |
Random comment typos like hte
Diffstat (limited to 'src/usr/local')
-rw-r--r-- | src/usr/local/www/diag_confbak.php | 2 | ||||
-rw-r--r-- | src/usr/local/www/jquery/pfSense.js | 4 | ||||
-rw-r--r-- | src/usr/local/www/pkg_edit.php | 10 |
3 files changed, 8 insertions, 8 deletions
diff --git a/src/usr/local/www/diag_confbak.php b/src/usr/local/www/diag_confbak.php index c74f28f..fb947a5 100644 --- a/src/usr/local/www/diag_confbak.php +++ b/src/usr/local/www/diag_confbak.php @@ -225,7 +225,7 @@ if (is_array($confvers)): <td><?=gettext("Current configuration")?></td> </tr> <?php - // And now for hte table of prior backups + // And now for the table of prior backups $c = 0; foreach ($confvers as $version): if ($version['time'] != 0) { diff --git a/src/usr/local/www/jquery/pfSense.js b/src/usr/local/www/jquery/pfSense.js index a82e6b1..1e74d63 100644 --- a/src/usr/local/www/jquery/pfSense.js +++ b/src/usr/local/www/jquery/pfSense.js @@ -93,7 +93,7 @@ $(function() { }); })(); - // Automatically change IpAddress mask selectors to 128/32 options for IPv6/IPvd addresses + // Automatically change IpAddress mask selectors to 128/32 options for IPv6/IPv4 addresses $('span.pfIpMask + select').each(function (idx, select){ var input = $(select).prevAll('input[type=text]'); @@ -156,7 +156,7 @@ $(function() { // The need to NOT hide the advanced options if the elements therein are not set to the system // default values makes it better to handle advanced option hiding in each PHP file so this is being - // disabled for now changing hte class name it acts on to "auto-advanced" + // disabled for now by changing the class name it acts on to "auto-advanced" // Hide advanced inputs by default if ($('.auto-advanced').length > 0) diff --git a/src/usr/local/www/pkg_edit.php b/src/usr/local/www/pkg_edit.php index 1773d9a..ea04094 100644 --- a/src/usr/local/www/pkg_edit.php +++ b/src/usr/local/www/pkg_edit.php @@ -616,7 +616,7 @@ $form->addGlobal(new Form_Input( )); /* If a package's XML has <advanced_options/> configured, then setup - * ta section for the fields that have <advancedfield/> set. + * the section for the fields that have <advancedfield/> set. * These fields will be placed below other fields in a separate area titled 'Advanced Features'. * These advanced fields are not normally configured and generally left to default to 'default settings'. */ @@ -629,7 +629,7 @@ if ($pkg['advanced_options'] == "enabled") { $js_array = array(); -// Now loop through all of hte fields defined in the XML +// Now loop through all of the fields defined in the XML foreach ($pkg['fields']['field'] as $pkga) { if ($pkga['type'] == "sorting") { @@ -719,7 +719,7 @@ foreach ($pkg['fields']['field'] as $pkga) { break; case "password": - // Creat a password element + // Create a password element if($grouping) { $group->add(new Form_Input( $pkga['fieldname'], @@ -748,7 +748,7 @@ foreach ($pkg['fields']['field'] as $pkga) { break; case "info": - // If the info containe a table we should detect and Bootstrap it + // If the info contains a table we should detect and Bootstrap it if (strpos($pkga['description'], '<table') !== FALSE) $info = bootstrapTable($pkga['description']); @@ -971,7 +971,7 @@ foreach ($pkg['fields']['field'] as $pkga) { break; - // Creat textarea element + // Create a textarea element case "textarea": if ($pkga['rows']) { $rows = " rows='{$pkga['rows']}' "; |