diff options
author | k-paulius <k.dash.paulius@gmail.com> | 2016-02-10 22:42:21 -0600 |
---|---|---|
committer | k-paulius <k.dash.paulius@gmail.com> | 2016-02-10 22:42:21 -0600 |
commit | 204146557e3fbbb9487ea21a6261e55955d2843a (patch) | |
tree | bbbaa6bfea7145ece7a1390792015e0482c100e5 /src/usr/local/www/pkg_edit.php | |
parent | 57300e6bce6aa7987a5d0717874b5b01ee2ebaa8 (diff) | |
download | pfsense-204146557e3fbbb9487ea21a6261e55955d2843a.zip pfsense-204146557e3fbbb9487ea21a6261e55955d2843a.tar.gz |
Remove redundant gettext call
Diffstat (limited to 'src/usr/local/www/pkg_edit.php')
-rw-r--r-- | src/usr/local/www/pkg_edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/pkg_edit.php b/src/usr/local/www/pkg_edit.php index 8f85909..4694eea 100644 --- a/src/usr/local/www/pkg_edit.php +++ b/src/usr/local/www/pkg_edit.php @@ -657,7 +657,7 @@ $form->addGlobal(new Form_Input( if ($pkg['advanced_options'] == "enabled") { $advfield_count = 0; - $advanced = new Form_Section(gettext("Advanced Features")); + $advanced = new Form_Section("Advanced Features"); $advanced->addClass('advancedoptions'); } @@ -735,7 +735,7 @@ foreach ($pkg['fields']['field'] as $pkga) { // If we get here but have no $section, the package config file probably had no listtopic field // We can create a section with a generic name to fix that if (!$section) { - $section = new Form_Section(gettext('General Options')); + $section = new Form_Section('General Options'); } switch ($pkga['type']) { |