diff --git a/src/www/firewall_schedule.php b/src/www/firewall_schedule.php
index 8430f57ec..c00554a34 100644
--- a/src/www/firewall_schedule.php
+++ b/src/www/firewall_schedule.php
@@ -73,7 +73,7 @@ include("head.inc");
legacy_html_escape_form_data($a_schedules);
$main_buttons = array(
- array('label'=>gettext('Add a new schedule'), 'href'=>'firewall_schedule_edit.php'),
+ array('label'=>gettext('Add'), 'href'=>'firewall_schedule_edit.php'),
);
?>
@@ -228,14 +228,14 @@ $main_buttons = array(
=$schedule['descr'];?>
- " class="btn btn-default btn-xs">
-
+
+
- " data-toggle="tooltip" class="act_delete btn btn-default btn-xs">
-
+
+
- ">
-
+
+
|
diff --git a/src/www/firewall_schedule_edit.php b/src/www/firewall_schedule_edit.php
index d227daee2..b73d5cf1d 100644
--- a/src/www/firewall_schedule_edit.php
+++ b/src/www/firewall_schedule_edit.php
@@ -655,11 +655,11 @@ function insertElements(tempFriendlyTime, starttimehour, starttimemin, stoptimeh
tr.appendChild(td);
td = document.createElement("td");
- td.innerHTML = ``;
+ td.innerHTML = ``;
tr.appendChild(td);
td = document.createElement("td");
- td.innerHTML = ``;
+ td.innerHTML = ``;
tr.appendChild(td);
td = document.createElement("td");
@@ -1137,10 +1137,10 @@ $( function() { $('#iform td').css({ 'background-color' : '' }); })
-
+
|
-
+
|
diff --git a/src/www/firewall_scrub.php b/src/www/firewall_scrub.php
index e7d10b583..dadb57515 100644
--- a/src/www/firewall_scrub.php
+++ b/src/www/firewall_scrub.php
@@ -112,8 +112,15 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
exit;
}
}
+
legacy_html_escape_form_data($a_scrub);
+
include("head.inc");
+
+$main_buttons = array(
+ array('href'=>'firewall_scrub_edit.php', 'label'=>gettext('Add')),
+);
+
?>
|