summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/pkg_edit.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2015-10-23 17:34:53 +0545
committerPhil Davis <phil.davis@inf.org>2015-10-23 17:34:53 +0545
commit2d911f2c0f4c11d1269e8943ce40228a6252ff5e (patch)
tree2d7ba6489baf290fe25fd914689ce538594716c1 /src/usr/local/www/pkg_edit.php
parent50e6c063e6ec148917ff0bcb0bce8b0a08df5792 (diff)
downloadpfsense-2d911f2c0f4c11d1269e8943ce40228a6252ff5e.zip
pfsense-2d911f2c0f4c11d1269e8943ce40228a6252ff5e.tar.gz
Random comment typos like hte
Diffstat (limited to 'src/usr/local/www/pkg_edit.php')
-rw-r--r--src/usr/local/www/pkg_edit.php10
1 files changed, 5 insertions, 5 deletions
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']}' ";
OpenPOWER on IntegriCloud