Version Description
- Tag links were not being set back to HTTP when the 'Disable Automatic HTTPS' option was enabled.
Download this release
Release Info
Developer | Mvied |
Plugin | WordPress HTTPS (SSL) |
Version | 1.6.2 |
Comparing to | |
See all releases |
Code changes from version 1.6.1 to 1.6.2
- readme.txt +3 -1
- wordpress-https.php +3 -2
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.6.
|
8 |
|
9 |
Features: Force HTTPS on only certain pages. Fix partially encrypted errors. Disable WordPress from changing links to HTTPS. And more!
|
10 |
|
@@ -64,6 +64,8 @@ In most cases, yes. There are limitations to what this plugin can fix. Here are
|
|
64 |
|
65 |
== Changelog ==
|
66 |
|
|
|
|
|
67 |
= 1.6.1 =
|
68 |
* Bug fix - front page redirection was causing issues when a static page was selected for the posts page.
|
69 |
= 1.6 =
|
4 |
Tags: encrypted, ssl, http, https
|
5 |
Requires at least: 2.7.0
|
6 |
Tested up to: 3.0.1
|
7 |
+
Stable tag: 1.6.2
|
8 |
|
9 |
Features: Force HTTPS on only certain pages. Fix partially encrypted errors. Disable WordPress from changing links to HTTPS. And more!
|
10 |
|
64 |
|
65 |
== Changelog ==
|
66 |
|
67 |
+
= 1.6.2 =
|
68 |
+
* Tag links were not being set back to HTTP when the 'Disable Automatic HTTPS' option was enabled.
|
69 |
= 1.6.1 =
|
70 |
* Bug fix - front page redirection was causing issues when a static page was selected for the posts page.
|
71 |
= 1.6 =
|
wordpress-https.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WordPress HTTPS
|
|
4 |
Plugin URI: http://mvied.com/projects/wordpress-https/
|
5 |
Description: Force HTTPS on only certain pages. Fix partially encrypted errors. Disable WordPress from changing links to HTTPS. And more!
|
6 |
Author: Mike Ems
|
7 |
-
Version: 1.6.
|
8 |
Author URI: http://mvied.com/
|
9 |
*/
|
10 |
|
@@ -24,7 +24,7 @@ if ( !class_exists('WordPressHTTPS') ) {
|
|
24 |
*
|
25 |
* @var int
|
26 |
*/
|
27 |
-
var $plugin_version = '1.6.
|
28 |
|
29 |
/**
|
30 |
* Plugin URL
|
@@ -99,6 +99,7 @@ if ( !class_exists('WordPressHTTPS') ) {
|
|
99 |
add_filter('post_link', array(&$this, 'replace_https'));
|
100 |
add_filter('category_link', array(&$this, 'replace_https'));
|
101 |
add_filter('get_archives_link', array(&$this, 'replace_https'));
|
|
|
102 |
add_filter('search_link', array(&$this, 'replace_https'));
|
103 |
add_filter('home_url', array(&$this, 'replace_https'));
|
104 |
add_filter('bloginfo', array(&$this, 'bloginfo'), 10, 2);
|
4 |
Plugin URI: http://mvied.com/projects/wordpress-https/
|
5 |
Description: Force HTTPS on only certain pages. Fix partially encrypted errors. Disable WordPress from changing links to HTTPS. And more!
|
6 |
Author: Mike Ems
|
7 |
+
Version: 1.6.2
|
8 |
Author URI: http://mvied.com/
|
9 |
*/
|
10 |
|
24 |
*
|
25 |
* @var int
|
26 |
*/
|
27 |
+
var $plugin_version = '1.6.2';
|
28 |
|
29 |
/**
|
30 |
* Plugin URL
|
99 |
add_filter('post_link', array(&$this, 'replace_https'));
|
100 |
add_filter('category_link', array(&$this, 'replace_https'));
|
101 |
add_filter('get_archives_link', array(&$this, 'replace_https'));
|
102 |
+
add_filter('tag_link', array(&$this, 'replace_https'));
|
103 |
add_filter('search_link', array(&$this, 'replace_https'));
|
104 |
add_filter('home_url', array(&$this, 'replace_https'));
|
105 |
add_filter('bloginfo', array(&$this, 'bloginfo'), 10, 2);
|