chg: [AdminShell] return the name of the setting change and what we changed it to.

pull/4556/head
Steve Clement 2019-05-01 13:47:44 +09:00
parent d947d756da
commit 082cf53225
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ class AdminShell extends AppShell
}
$result = $this->Server->serverSettingsEditValue($cli_user, $setting, $value);
if ($result === true) {
echo 'Setting changed.';
echo 'Setting "' . $setting_name . '" changed to ' . $value;
} else {
echo $result;
}