Skip to content
This repository has been archived by the owner on Dec 14, 2020. It is now read-only.

Commit

Permalink
webui: fix corrupted MAC filter list when removing then re-adding an …
Browse files Browse the repository at this point in the history
…entry
  • Loading branch information
RMerl committed Feb 4, 2015
1 parent e507344 commit 4c3ea53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release/src/router/www/Advanced_ACL_Content.asp
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ function deleteRow(r){
var wl_maclist_x_value = "";
for(i=0; i<document.getElementById('wl_maclist_x_table').rows.length; i++){
wl_maclist_x_value += "&#60";
wl_maclist_x_value += $('wl_maclist_x_table').rows[i].cells[0].innerHTML;
wl_maclist_x_value += "&#62";
wl_maclist_x_value += document.getElementById('wl_maclist_x_table').rows[i].cells[0].innerHTML;
wl_maclist_x_value += "&#62";
wl_maclist_x_value += document.getElementById('wl_maclist_x_table').rows[i].cells[1].innerHTML;
}
wl_maclist_x_array = wl_maclist_x_value;
Expand Down

0 comments on commit 4c3ea53

Please sign in to comment.