diff --git a/pandora_console/operation/netflow/nf_live_view.php b/pandora_console/operation/netflow/nf_live_view.php
index 65a7f31f12..b9913f6b76 100644
--- a/pandora_console/operation/netflow/nf_live_view.php
+++ b/pandora_console/operation/netflow/nf_live_view.php
@@ -361,7 +361,7 @@ if (is_metaconsole()) {
echo '
| ';
} else {
echo ''.__('Filter').' | ';
- echo ''.__('Normal').' '.html_print_radio_button_extended('filter_type', 0, '', $filter_type, false, 'displayNormalFilter();', 'style="margin-right: 40px;"', true).__('Advanced').' '.html_print_radio_button_extended('filter_type', 1, '', $filter_type, false, 'displayAdvancedFilter();', 'style="margin-right: 40px;"', true).' | ';
+ echo ''.__('Normal').' '.html_print_radio_button_extended('filter_type', 0, '', $filter_type, false, 'displayNormalFilter();', 'style="margin-right: 40px;"', true).__('Custom').' '.html_print_radio_button_extended('filter_type', 1, '', $filter_type, false, 'displayAdvancedFilter();', 'style="margin-right: 40px;"', true).' | ';
}
@@ -384,7 +384,7 @@ if (is_metaconsole()) {
echo ' | ';
} else {
echo "".__('Dst Ip').ui_print_help_tip(__('Destination IP. A comma separated list of destination ip. If we leave the field blank, will show all ip. Example filter by ip: 25.46.157.214,160.253.135.249'), true).' | ';
- echo ''.html_print_input_text('ip_dst', $filter['ip_dst'], false, 30, 80, true).' | ';
+ echo ''.html_print_input_text('ip_dst', $filter['ip_dst'], false, 40, 80, true).' | ';
}
if ($netflow_disable_custom_lvfilters) {
@@ -392,7 +392,7 @@ if (is_metaconsole()) {
echo ' | ';
} else {
echo "".__('Src Ip').ui_print_help_tip(__('Source IP. A comma separated list of source ip. If we leave the field blank, will show all ip. Example filter by ip: 25.46.157.214,160.253.135.249'), true).' | ';
- echo ''.html_print_input_text('ip_src', $filter['ip_src'], false, 30, 80, true).' | ';
+ echo ''.html_print_input_text('ip_src', $filter['ip_src'], false, 40, 80, true).' | ';
}
echo '';
@@ -403,7 +403,7 @@ if (is_metaconsole()) {
echo ' | ';
} else {
echo "".__('Dst Port').ui_print_help_tip(__('Destination port. A comma separated list of destination ports. If we leave the field blank, will show all ports. Example filter by ports 80 and 22: 80,22'), true).' | ';
- echo ''.html_print_input_text('dst_port', $filter['dst_port'], false, 30, 80, true).' | ';
+ echo ''.html_print_input_text('dst_port', $filter['dst_port'], false, 40, 80, true).' | ';
}
if ($netflow_disable_custom_lvfilters) {
@@ -411,7 +411,7 @@ if (is_metaconsole()) {
echo ' | ';
} else {
echo "".__('Src Port').ui_print_help_tip(__('Source port. A comma separated list of source ports. If we leave the field blank, will show all ports. Example filter by ports 80 and 22: 80,22'), true).' | ';
- echo ''.html_print_input_text('src_port', $filter['src_port'], false, 30, 80, true).' | ';
+ echo ''.html_print_input_text('src_port', $filter['src_port'], false, 40, 80, true).' | ';
}
echo '';
@@ -447,10 +447,10 @@ if (is_metaconsole()) {
true
);
echo ''.__('IP address resolution').''.ui_print_help_tip(__('Resolve the IP addresses to get their hostnames.'), true).' | ';
- echo ''.$radio_buttons.' | ';
+ echo ''.$radio_buttons.' | ';
echo ''.__('Router ip').' | ';
- echo ''.html_print_input_text('router_ip', $filter['router_ip'], false, 30, 80, true).' | ';
+ echo ''.html_print_input_text('router_ip', $filter['router_ip'], false, 40, 80, true).' | ';
echo '';