WordPress HTTPS (SSL) - Version 1.8.1

Version Description

  • Re-enabled the canonical redirect for WordPres sites not using Shared SSL.
Download this release

Release Info

Developer Mvied
Plugin Icon wp plugin WordPress HTTPS (SSL)
Version 1.8.1
Comparing to
See all releases

Code changes from version 1.8 to 1.8.1

Files changed (4) hide show
  1. readme.txt +3 -1
  2. screenshot-1.png +0 -0
  3. screenshot-2.png +0 -0
  4. wordpress-https.php +4 -5
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: encrypted, ssl, http, https
5
  Requires at least: 2.7.0
6
  Tested up to: 3.0.1
7
- Stable tag: 1.8
8
 
9
  WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites. Free support provided!
10
 
@@ -65,6 +65,8 @@ In most cases, yes. There are limitations to what this plugin can fix. Here are
65
 
66
  == Changelog ==
67
 
 
 
68
  = 1.8 =
69
  * Fixed cross-browser CSS issue on plugin settings page.
70
  * Corrected and updated plugin settings validation.
4
  Tags: encrypted, ssl, http, https
5
  Requires at least: 2.7.0
6
  Tested up to: 3.0.1
7
+ Stable tag: 1.8.1
8
 
9
  WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites. Free support provided!
10
 
65
 
66
  == Changelog ==
67
 
68
+ = 1.8.1 =
69
+ * Re-enabled the canonical redirect for WordPres sites not using Shared SSL.
70
  = 1.8 =
71
  * Fixed cross-browser CSS issue on plugin settings page.
72
  * Corrected and updated plugin settings validation.
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
wordpress-https.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WordPress HTTPS
4
  Plugin URI: http://mvied.com/projects/wordpress-https/
5
  Description: WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites. Free support provided!
6
  Author: Mike Ems
7
- Version: 1.8
8
  Author URI: http://mvied.com/
9
  */
10
 
@@ -25,7 +25,7 @@ if ( !class_exists('WordPressHTTPS') ) {
25
  *
26
  * @var int
27
  */
28
- var $plugin_version = '1.8';
29
 
30
  /**
31
  * Plugin URL
@@ -87,6 +87,8 @@ if ( !class_exists('WordPressHTTPS') ) {
87
  $this->shared_ssl = 1;
88
  // Assign HTTPS URL to Shared SSL Host
89
  $this->https_url = get_option('wordpress-https_sharedssl_host');
 
 
90
  }
91
 
92
  // Define default options
@@ -101,9 +103,6 @@ if ( !class_exists('WordPressHTTPS') ) {
101
  'wordpress-https_sharedssl_host' => '' // Hostname for Shared SSL
102
  );
103
 
104
- // Prevent WordPress from causing a redirect loop
105
- remove_filter('template_redirect', 'redirect_canonical');
106
-
107
  if ( is_admin() ) {
108
  // Add admin menus
109
  add_action('admin_menu', array(&$this, 'menu'));
4
  Plugin URI: http://mvied.com/projects/wordpress-https/
5
  Description: WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites. Free support provided!
6
  Author: Mike Ems
7
+ Version: 1.8.1
8
  Author URI: http://mvied.com/
9
  */
10
 
25
  *
26
  * @var int
27
  */
28
+ var $plugin_version = '1.8.1';
29
 
30
  /**
31
  * Plugin URL
87
  $this->shared_ssl = 1;
88
  // Assign HTTPS URL to Shared SSL Host
89
  $this->https_url = get_option('wordpress-https_sharedssl_host');
90
+ // Prevent WordPress from causing a redirect loop
91
+ remove_filter('template_redirect', 'redirect_canonical');
92
  }
93
 
94
  // Define default options
103
  'wordpress-https_sharedssl_host' => '' // Hostname for Shared SSL
104
  );
105
 
 
 
 
106
  if ( is_admin() ) {
107
  // Add admin menus
108
  add_action('admin_menu', array(&$this, 'menu'));