Skip to content

Commit

Permalink
Updated to version 3.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Ems committed Jul 14, 2012
1 parent 4475546 commit 3301186
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion readme.txt
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
Tags: security, encryption, ssl, shared ssl, private ssl, public ssl, private ssl, http, https
Requires at least: 3.0
Tested up to: 3.4
Stable tag: 3.1.2
Stable tag: 3.1.3

WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites.

Expand Down Expand Up @@ -76,6 +76,9 @@ add_filter('force_ssl', 'store_force_ssl', 10, 3);`
* SSL Domain Mapping

== Changelog ==
= 3.1.3 =
* Bug Fix - Temporarily removed request filter. Too experimental.
* Bug Fix - Fixed bug where a bad setting for ssl_host would cause the code to fail.
= 3.1.2 =
* Bug Fix - Redirects should no longer remove URL parameters.
* Bug Fix - Removed loginout filter that was changing links to plain text.
Expand Down
6 changes: 3 additions & 3 deletions wordpress-https.php
Expand Up @@ -4,7 +4,7 @@
Plugin URI: http://mvied.com/projects/wordpress-https/
Description: WordPress HTTPS is intended to be an all-in-one solution to using SSL on WordPress sites.
Author: Mike Ems
Version: 3.1.2
Version: 3.1.3
Author URI: http://mvied.com/
*/

Expand Down Expand Up @@ -48,13 +48,13 @@ function wphttps_autoloader($class) {
if ( function_exists('get_bloginfo') && ! defined('WP_UNINSTALL_PLUGIN') ) {
$wordpress_https = new WordPressHTTPS;
$wordpress_https->setSlug('wordpress-https');
$wordpress_https->setVersion('3.1.2');
$wordpress_https->setVersion('3.1.3');
$wordpress_https->setLogger(WordPressHTTPS_Logger::getInstance());
$wordpress_https->setPluginUrl(plugins_url('', __FILE__));
$wordpress_https->setDirectory(dirname(__FILE__));
$wordpress_https->setModuleDirectory(dirname(__FILE__) . '/lib/WordPressHTTPS/Module/');

//Load Modules
// Load Modules
$wordpress_https->loadModules();

// If WPHTTPS_RESET global is defined, reset settings
Expand Down

0 comments on commit 3301186

Please sign in to comment.