summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/diag_packet_capture.php
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2016-03-15 09:39:46 -0300
committerRenato Botelho <renato@netgate.com>2016-03-15 09:39:46 -0300
commitfaab522fa51ec83c0284e3f1fc6129580d7360f7 (patch)
tree18d092c0126f1d5b48b4285fad3345b4c3d225e9 /src/usr/local/www/diag_packet_capture.php
parent8658cc0ed1127c2c7f1d84b4610db75675d914e7 (diff)
downloadpfsense-faab522fa51ec83c0284e3f1fc6129580d7360f7.zip
pfsense-faab522fa51ec83c0284e3f1fc6129580d7360f7.tar.gz
Revert "Merge pull request #2728 from phil-davis/form_button"
This reverts commit a32bed49516f3df3d104a5026a5b2c74451f348f, reversing changes made to 9ec9978267a5d1985d6da8ba35d52b7174239d2f.
Diffstat (limited to 'src/usr/local/www/diag_packet_capture.php')
-rw-r--r--src/usr/local/www/diag_packet_capture.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/diag_packet_capture.php b/src/usr/local/www/diag_packet_capture.php
index 766002d..d31c335 100644
--- a/src/usr/local/www/diag_packet_capture.php
+++ b/src/usr/local/www/diag_packet_capture.php
@@ -393,14 +393,14 @@ $processisrunning = ($processcheck != "");
if (($action == gettext("Stop") or $action == "") and $processisrunning != true) {
$form->addGlobal(new Form_Button(
'startbtn',
- gettext('Start'),
+ 'Start',
null,
'fa-play-circle'
))->addClass('btn-success');
} else {
$form->addGlobal(new Form_Button(
'stopbtn',
- gettext('Stop'),
+ 'Stop',
null,
'fa-stop-circle'
))->addClass('btn-warning');
@@ -409,14 +409,14 @@ if (($action == gettext("Stop") or $action == "") and $processisrunning != true)
if (file_exists($fp.$fn) and $processisrunning != true) {
$form->addGlobal(new Form_Button(
'viewbtn',
- gettext('View Capture'),
+ 'View Capture',
null,
'fa-file-text-o'
))->addClass('btn-primary');
$form->addGlobal(new Form_Button(
'downloadbtn',
- gettext('Download Capture'),
+ 'Download Capture',
null,
'fa-download'
))->addClass('btn-primary');
OpenPOWER on IntegriCloud