From 830cafe845c9ced701010318c2635317dfdac961 Mon Sep 17 00:00:00 2001 From: doktornotor Date: Tue, 7 Mar 2017 12:22:36 +0100 Subject: [PATCH] Add reason to write_config() calls --- src/usr/local/www/services_dyndns.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/usr/local/www/services_dyndns.php b/src/usr/local/www/services_dyndns.php index cf4f47118f..d941732ec6 100644 --- a/src/usr/local/www/services_dyndns.php +++ b/src/usr/local/www/services_dyndns.php @@ -45,7 +45,7 @@ if ($_POST['act'] == "del") { @unlink("{$g['conf_path']}/dyndns_{$conf['interface']}{$conf['type']}" . escapeshellarg($hostname) . "{$conf['id']}.cache"); unset($a_dyndns[$_POST['id']]); - write_config(); + write_config(gettext("Dynamic DNS client deleted.")); services_dyndns_configure(); header("Location: services_dyndns.php"); @@ -54,10 +54,12 @@ if ($_POST['act'] == "del") { if ($a_dyndns[$_POST['id']]) { if (isset($a_dyndns[$_POST['id']]['enable'])) { unset($a_dyndns[$_POST['id']]['enable']); + $wc_msg = gettext('Dynamic DNS client disabled.'); } else { $a_dyndns[$_POST['id']]['enable'] = true; + $wc_msg = gettext('Dynamic DNS client enabled.'); } - write_config(); + write_config($wc_msg); services_dyndns_configure(); header("Location: services_dyndns.php");