Plugin Directory


Ignore:
Timestamp:
07/31/2014 12:02:55 PM (12 years ago)
Author:
mra13
Message:

committing v1.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • https-redirection/trunk/https-redirection.php

    r940834 r957989  
    55Description: The plugin HTTPS Redirection allows an automatic redirection to the "HTTPS" version/URL of the site.
    66Author: Tips and Tricks HQ
    7 Version: 1.0
     7Version: 1.1
    88Author URI: http://www.tipsandtricks-hq.com/
    99License: GPLv2 or later
     
    7777        $httpsrdrctn_option_defaults = array(
    7878            'https'                 => 0,
    79             'https_domain'  => 1,
     79            'https_domain'  => 0,
    8080            'https_pages_array' => array(),
    8181            'plugin_option_version' => $httpsrdrctn_plugin_info["Version"]
     
    222222        if ( ! file_exists( $home_path . '.htaccess' ) ) {
    223223            if( $httpsrdrctn_options['https'] == '1' ){
    224                 $rewrite_https_content = '<IfModule mod_rewrite.c>\n';
     224                $rewrite_https_content = '<IfModule mod_rewrite.c>' . "\n";
    225225                $rewrite_https_content .= 'RewriteEngine On' . "\n";
    226226                if( '1' == $httpsrdrctn_options['https_domain'] ){
Note: See TracChangeset for help on using the changeset viewer.