Plugin Directory

Changeset 991182


Ignore:
Timestamp:
09/16/2014 03:35:51 PM (12 years ago)
Author:
phikai
Message:

Stable up to 4.0.0

Location:
wp-force-https/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-force-https/trunk/readme.txt

    r916628 r991182  
    33Tags: ssl, https, http, secure
    44Requires at least: 3.5
    5 Tested up to: 3.9.1
    6 Stable tag: 0.1.1
     5Tested up to: 4.0.0
     6Stable tag: 0.1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3737== Changelog ==
    3838
     39= 0.1.2 =
     40* Adding exit();
     41* Compatible to 4.0.0
     42
    3943= 0.1.1 =
    4044* Initial Release
  • wp-force-https/trunk/wordpress-force-https.php

    r916628 r991182  
    77Author: A. Kai Armstrong
    88Author URI: http://www.kaiarmstrong.com
    9 Version: 0.1.1
     9Version: 0.1.2
    1010*/
    1111
     
    1313  if ( !is_ssl() ) {
    1414    wp_redirect('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], 301 );
     15    exit();
    1516  }
    1617}
Note: See TracChangeset for help on using the changeset viewer.