diff options
author | Chris Buechler <cmb@pfsense.org> | 2008-10-09 05:11:41 +0000 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2008-10-09 05:11:41 +0000 |
commit | 89a61a52371e7ff91a380fbd8a7e03884f36a974 (patch) | |
tree | 792019211cb7d1ca4591ad470ed8134bd8f838cf /packages/autoconfigbackup | |
parent | 78e50e3dc90f4afb46d98690a479cf35de7e941a (diff) | |
download | pfsense-packages-89a61a52371e7ff91a380fbd8a7e03884f36a974.tar.gz pfsense-packages-89a61a52371e7ff91a380fbd8a7e03884f36a974.tar.bz2 pfsense-packages-89a61a52371e7ff91a380fbd8a7e03884f36a974.zip |
s/http/https/ - site doesn't allow HTTP (though it redirects to HTTPS)
Diffstat (limited to 'packages/autoconfigbackup')
-rw-r--r-- | packages/autoconfigbackup/autoconfigbackup.xml | 4 | ||||
-rw-r--r-- | packages/autoconfigbackup/upload_config_filter.php | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/packages/autoconfigbackup/autoconfigbackup.xml b/packages/autoconfigbackup/autoconfigbackup.xml index 37517fc7..899d24c0 100644 --- a/packages/autoconfigbackup/autoconfigbackup.xml +++ b/packages/autoconfigbackup/autoconfigbackup.xml @@ -34,7 +34,7 @@ */ ]]> </copyright> - <description>Automatically backs up your pfSense configuration. All contents are encrypted on the server. Requires pfSense Premium Support Portal Subscription from http://portal.pfsense.org</description> + <description>Automatically backs up your pfSense configuration. All contents are encrypted on the server. Requires pfSense Premium Support Portal Subscription from https://portal.pfsense.org</description> <requirements>pfSense Premium Support Portal</requirements> <name>AutoConfigBackup</name> <version>1.0</version> @@ -118,4 +118,4 @@ </custom_php_install_command> <custom_php_deinstall_command> </custom_php_deinstall_command> -</packagegui>
\ No newline at end of file +</packagegui> diff --git a/packages/autoconfigbackup/upload_config_filter.php b/packages/autoconfigbackup/upload_config_filter.php index dfff8688..2fd88f70 100644 --- a/packages/autoconfigbackup/upload_config_filter.php +++ b/packages/autoconfigbackup/upload_config_filter.php @@ -48,7 +48,7 @@ if(!$username or !$password or !$encryptpw) { // Lock config config_lock(); - $notice_text = "Beginning http://portal.pfsense.org configuration backup."; + $notice_text = "Beginning https://portal.pfsense.org configuration backup."; log_error($notice_text); update_filter_reload_status($notice_text); @@ -107,9 +107,9 @@ if(!$username or !$password or !$encryptpw) { conf_mount_ro(); } else { - log_error("No http://portal.pfsense.org backup required."); + log_error("No https://portal.pfsense.org backup required."); } } -?>
\ No newline at end of file +?> |