From 811a3287d4aa38c713bb299974fd8cb7d4f43670 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Tue, 13 Oct 2015 20:33:35 +0200 Subject: [PATCH] unbound: redirect after save PR: https://forum.opnsense.org/index.php?topic=1490.0 --- src/www/services_unbound.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/www/services_unbound.php b/src/www/services_unbound.php index b05d9c268..08c1089eb 100644 --- a/src/www/services_unbound.php +++ b/src/www/services_unbound.php @@ -136,6 +136,8 @@ if ($_POST) { if (!$input_errors) { write_config("DNS Resolver configured."); mark_subsystem_dirty('unbound'); + header("Location: services_unbound.php"); + exit; } } }