summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/usr/local/www/firewall_schedule_edit.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/firewall_schedule_edit.php b/src/usr/local/www/firewall_schedule_edit.php
index c40f4fc..190a1d0 100644
--- a/src/usr/local/www/firewall_schedule_edit.php
+++ b/src/usr/local/www/firewall_schedule_edit.php
@@ -701,7 +701,7 @@ events.push(function() {
$('[id^=Delete]').prop('type', 'button');
$('[id^=Delete]').click(function(event) {
- delete_row(event.target.id.slice(6));
+ fse_delete_row(event.target.id.slice(6));
});
});
//]]>
@@ -1170,7 +1170,7 @@ function insertElements(tempFriendlyTime, starttimehour, starttimemin, stoptimeh
$(rowhtml.replace(/@/g, counter)).insertBefore(node);
$('[id^=delete]').click(function(event) {
- delete_row(event.target.id.slice(6));
+ fse_delete_row(event.target.id.slice(6));
});
counter++;
@@ -1184,7 +1184,7 @@ function insertElements(tempFriendlyTime, starttimehour, starttimemin, stoptimeh
}
// If only everything were this simple
-function delete_row(row) {
+function fse_delete_row(row) {
$('.schedulegrp' + row).remove();
}
//]]>
OpenPOWER on IntegriCloud