diff options
author | Renato Botelho <renato@netgate.com> | 2017-01-25 16:48:43 -0200 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2017-01-25 16:48:43 -0200 |
commit | 32dcdc7ce492cf1ce60e6e21fd9b8708ce8a65e3 (patch) | |
tree | 93a6a93bf0019dca3b78eb340b7dbc2f64ef765d /src/usr/local/www/guiconfig.inc | |
parent | a634183dcaabff28b6f24d08549a68724cbaa22e (diff) | |
parent | 815398fb3aabc4cbe15ce89df931d8a1ccae8e50 (diff) | |
download | pfsense-32dcdc7ce492cf1ce60e6e21fd9b8708ce8a65e3.zip pfsense-32dcdc7ce492cf1ce60e6e21fd9b8708ce8a65e3.tar.gz |
Merge pull request #3442 from phil-davis/monitor-reload
Diffstat (limited to 'src/usr/local/www/guiconfig.inc')
-rw-r--r-- | src/usr/local/www/guiconfig.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/usr/local/www/guiconfig.inc b/src/usr/local/www/guiconfig.inc index 3b3c1c4..2163dc2 100644 --- a/src/usr/local/www/guiconfig.inc +++ b/src/usr/local/www/guiconfig.inc @@ -379,7 +379,7 @@ function print_callout($msg, $class = 'info', $heading = '') { function get_std_save_message($retval) { $filter_related = false; - $filter_pages = array("nat", "filter"); + $filter_pages = array("firewall_aliases", "firewall_nat", "firewall_rules", "status_logs_filter"); if ($retval === 0) { // 0 is success $to_return = gettext("The changes have been applied successfully."); @@ -393,7 +393,8 @@ function get_std_save_message($retval) { } } if ($filter_related) { - $to_return .= "<br />" . gettext("<a href=\"status_filter_reload.php\">Monitor</a> the filter reload progress."); + $to_return .= " " . gettext("The firewall rules are now reloading in the background.") . "<br />" . + sprintf(gettext("%sMonitor%s the filter reload progress."), "<a href='status_filter_reload.php'>", "</a>"); } return $to_return; } |