diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-10-06 22:45:26 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-10-06 22:45:26 +0000 |
commit | e2c11bd449480693e7fe1da50b525e5ea5552925 (patch) | |
tree | d120fa7438ef8e5685026ef05af1f68ba319e9b2 | |
parent | 493cf130794d8da4a57cc3322cd745ccb5692227 (diff) | |
download | pfsense-packages-e2c11bd449480693e7fe1da50b525e5ea5552925.tar.gz pfsense-packages-e2c11bd449480693e7fe1da50b525e5ea5552925.tar.bz2 pfsense-packages-e2c11bd449480693e7fe1da50b525e5ea5552925.zip |
Cleanup success text
-rw-r--r-- | packages/autoconfigbackup/autoconfigbackup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/autoconfigbackup/autoconfigbackup.php b/packages/autoconfigbackup/autoconfigbackup.php index 8866946f..cdf42ed2 100644 --- a/packages/autoconfigbackup/autoconfigbackup.php +++ b/packages/autoconfigbackup/autoconfigbackup.php @@ -81,7 +81,7 @@ if($_REQUEST['newver'] != "") { curl_close($curl_session); } if(!$input_errors && config_restore("/tmp/config_restore.xml") == 0) { - $savemsg = "Successfully reverted to timestamp " . date("n/j/y H:i:s", $_REQUEST['newver']) . "."; + $savemsg = "Successfully reverted the pfSense configuration to timestamp " . date("n/j/y H:i:s", $_REQUEST['newver']) . "."; } else { $savemsg = "Unable to revert to the selected configuration."; } |