mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fixes Issue #142
This commit is contained in:
parent
6097246c7d
commit
9eb60dcc6f
@ -492,6 +492,11 @@ if($config['aliases']['alias'] <> "")
|
||||
<!--
|
||||
var addressarray=new Array(<?php echo $aliasesaddr; ?>);
|
||||
var customarray=new Array(<?php echo $aliases; ?>);
|
||||
|
||||
var oTextbox1 = new AutoSuggestControl(document.getElementById("localip"), new StateSuggestions(addressarray));
|
||||
var oTextbox2 = new AutoSuggestControl(document.getElementById("beginport_cust"), new StateSuggestions(customarray));
|
||||
var oTextbox3 = new AutoSuggestControl(document.getElementById("endport_cust"), new StateSuggestions(customarray));
|
||||
var oTextbox4 = new AutoSuggestControl(document.getElementById("localbeginport_cust"), new StateSuggestions(customarray));
|
||||
//-->
|
||||
</script>
|
||||
<?php include("fend.inc"); ?>
|
||||
|
||||
@ -1209,6 +1209,12 @@ include("head.inc");
|
||||
var addressarray=new Array(<?php echo $aliasesaddr; ?>);
|
||||
var customarray=new Array(<?php echo $aliases; ?>);
|
||||
|
||||
var oTextbox1 = new AutoSuggestControl(document.getElementById("src"), new StateSuggestions(addressarray));
|
||||
var oTextbox2 = new AutoSuggestControl(document.getElementById("srcbeginport_cust"), new StateSuggestions(customarray));
|
||||
var oTextbox3 = new AutoSuggestControl(document.getElementById("srcendport_cust"), new StateSuggestions(customarray));
|
||||
var oTextbox4 = new AutoSuggestControl(document.getElementById("dst"), new StateSuggestions(addressarray));
|
||||
var oTextbox5 = new AutoSuggestControl(document.getElementById("dstbeginport_cust"), new StateSuggestions(customarray));
|
||||
var oTextbox6 = new AutoSuggestControl(document.getElementById("dstendport_cust"), new StateSuggestions(customarray));
|
||||
//-->
|
||||
</script>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user