summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_advanced_network.php
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2017-01-10 18:27:15 -0200
committerRenato Botelho <renato@netgate.com>2017-01-10 18:27:15 -0200
commit6a9a75958c21ab3011ea6d52c00d5e370c08cf89 (patch)
tree50dc713c40bd7e0deb7b0386c46f6863223ae725 /src/usr/local/www/system_advanced_network.php
parenta271ed3d5eff8595a558af802f883c47a7dab884 (diff)
parent3cb0c7c312d4c17cb75e8ce9fff3a28c706d76a5 (diff)
downloadpfsense-6a9a75958c21ab3011ea6d52c00d5e370c08cf89.zip
pfsense-6a9a75958c21ab3011ea6d52c00d5e370c08cf89.tar.gz
Merge pull request #3343 from phil-davis/retval1
Diffstat (limited to 'src/usr/local/www/system_advanced_network.php')
-rw-r--r--src/usr/local/www/system_advanced_network.php16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/usr/local/www/system_advanced_network.php b/src/usr/local/www/system_advanced_network.php
index 1200996..f90240f 100644
--- a/src/usr/local/www/system_advanced_network.php
+++ b/src/usr/local/www/system_advanced_network.php
@@ -132,14 +132,9 @@ if ($_POST) {
// Set preferred protocol
prefer_ipv4_or_ipv6();
- $retval = filter_configure();
- if (stristr($retval, "error") <> true) {
- $savemsg = get_std_save_message(gettext($retval));
- $class = 'success';
- } else {
- $savemsg = gettext($retval);
- $class = 'warning';
- }
+ $changes_applied = true;
+ $retval = 0;
+ $retval |= filter_configure();
}
}
@@ -149,8 +144,9 @@ include("head.inc");
if ($input_errors) {
print_input_errors($input_errors);
}
-if ($savemsg) {
- print_info_box($savemsg, $class);
+
+if ($changes_applied) {
+ print_apply_result_box($retval);
}
$tab_array = array();
OpenPOWER on IntegriCloud