Revision 66066eda
Added by Stephen Beaver over 9 years ago
src/etc/inc/pfsense-utils.inc | ||
---|---|---|
1828 | 1828 |
if ($pkg_interface <> "console") { |
1829 | 1829 |
echo '<script type="text/javascript">'; |
1830 | 1830 |
echo "\n//<![CDATA[\n"; |
1831 |
echo 'document.getElementById("progressbar").style.width="'. $percent.'%";';
|
|
1831 |
echo 'document.getElementById("progressbar").style.width="'. $percent.'%"'; |
|
1832 | 1832 |
echo "\n//]]>\n"; |
1833 | 1833 |
echo '</script>'; |
1834 | 1834 |
} else { |
src/usr/local/www/firewall_rules_edit.php | ||
---|---|---|
1590 | 1590 |
$group->add(new Form_Select( |
1591 | 1591 |
'dnpipe', |
1592 | 1592 |
'DNpipe', |
1593 |
$pconfig['dnpipe'],
|
|
1594 |
array('' => 'none') + array_keys($dnqlist)
|
|
1593 |
(isset($pconfig['dnpipe'])) ? $pconfig['dnpipe']:"",
|
|
1594 |
array('' => 'none') + array_combine(array_keys($dnqlist), array_keys($dnqlist))
|
|
1595 | 1595 |
)); |
1596 | 1596 |
|
1597 | 1597 |
$group->add(new Form_Select( |
1598 | 1598 |
'pdnpipe', |
1599 | 1599 |
'PDNpipe', |
1600 |
$pconfig['pdnpipe'],
|
|
1601 |
array('' => 'none') + array_keys($dnqlist)
|
|
1600 |
(isset($pconfig['pdnpipe'])) ? $pconfig['pdnpipe']:"",
|
|
1601 |
array('' => 'none') + array_combine(array_keys($dnqlist), array_keys($dnqlist))
|
|
1602 | 1602 |
)); |
1603 | 1603 |
|
1604 | 1604 |
$section->add($group)->setHelp('Choose the Out queue/Virtual interface only if '. |
1605 | 1605 |
'you have also selected In. The Out selection is applied to traffic leaving '. |
1606 |
'the interface where the rule is created, In is applied to traffic coming '.
|
|
1606 |
'the interface where the rule is created, It is applied to traffic coming '.
|
|
1607 | 1607 |
'into the chosen interface.<br />If you are creating a floating rule, if the '. |
1608 | 1608 |
'direction is In then the same rules apply, if the direction is out the '. |
1609 |
'selections are reverted Out is for incoming and In is for outgoing.'
|
|
1609 |
'selections are reversed Out is for incoming and In is for outgoing.'
|
|
1610 | 1610 |
); |
1611 | 1611 |
|
1612 | 1612 |
$group = new Form_Group('Ackqueue / Queue'); |
Also available in: Unified diff
Fixed #5532