Plugin Directory

Changeset 3415297


Ignore:
Timestamp:
12/09/2025 11:40:46 AM (4 months ago)
Author:
edhicks
Message:

Minor bug fixes

Location:
simple-ssl-redirects
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • simple-ssl-redirects/trunk/readme.txt

    r3411028 r3415297  
    77Tested up to: 6.9
    88Requires PHP: 5.3
    9 Stable tag: 1.1.3
     9Stable tag: 1.1.4
    1010License: GPLv2 or later
    1111
     
    7373== Changelog ==
    7474
     75= 1.1.4 =
     76
     77* Minor bug fixes.
     78
    7579= 1.1.3 =
    7680
  • simple-ssl-redirects/trunk/simple-ssl-redirects.php

    r3411028 r3415297  
    44* Plugin Name: Simple SSL Redirects
    55* Description: Lightweight plugin to ensure access via SSL/HTTPS. Uses 301 (permanent) redirects for SEO benefits.
    6 * Version: 1.1.3
     6* Version: 1.1.4
    77* Requires at least: 4.6
    88* Requires PHP: 5.3
     
    184184        {
    185185            echo '<div class="notice notice-error is-dismissible">';
    186             echo '<p><strong>'.esc_html__('Plugin disabled', 'simple-ssl-redirects').':</strong> '.esc_html__('This plugin has been manually disabled. To use it again you need to edit your wp-config.php file and remove the following line: <pre>define(\'DISABLE_SIMPLE_SSL_REDIRECTS\', true);</pre>', 'simple-ssl-redirects').'</p>';
     186            echo '<p><strong>'.esc_html__('Plugin disabled', 'simple-ssl-redirects').':</strong> '.esc_html__('This plugin has been manually disabled. To use it again you need to edit your wp-config.php file and remove the following line:', 'simple-ssl-redirects').' <pre>define(\'DISABLE_SIMPLE_SSL_REDIRECTS\', true);</pre></p>';
    187187            echo '</div>';
    188188        }
     
    191191        {
    192192            echo '<div class="notice notice-error is-dismissible">';
    193             echo '<p><strong>'.esc_html__('SSL Certificate Error', 'simple-ssl-redirects').':</strong> '.esc_html__('Simple SSL Redirects was unable to verify your site\'s SSL certificate. You should install a certificate and/or ensure it is configured correctly <strong>before</strong> enabling redirection. Enabling redirection without a correctly configured SSL certificate could result in you being unable to access your website.', 'simple-ssl-redirects').'</p>';
     193            echo '<p><strong>'.esc_html__('SSL Certificate Error', 'simple-ssl-redirects').':</strong> '.esc_html__('Simple SSL Redirects was unable to verify your site\'s SSL certificate. You should install a certificate and/or ensure it is configured correctly before enabling redirection. Enabling redirection without a correctly configured SSL certificate could result in you being unable to access your website.', 'simple-ssl-redirects').'</p>';
    194194            echo '</div>';
    195195        }
     
    312312        echo '<div>';
    313313        echo '<ul class="ul-disc">';
    314         echo '<li>'.wp_kses(
    315             __('It does not install any SSL certificates. If your site isn\'t yet configured to work over SSL at all then you should address that first. <strong>If you enable redirection without an SSL certificate installed it could result in you being unable to access your website.</strong>', 'simple-ssl-redirects'),
    316             array(
    317                 'strong' => array()
    318             )
    319         ).'</li>';
     314        echo '<li>'.esc_html__('It does not install any SSL certificates. If your site isn\'t yet configured to work over SSL at all then you should address that first.', 'simple-ssl-redirects').' <strong>'.esc_html__('If you enable redirection without an SSL certificate installed it could result in you being unable to access your website.', 'simple-ssl-redirects').'</strong></li>';
    320315        echo '<li>'.esc_html__('It does not fix any mixed content issues (resources such as scripts or images requested by your site using non-SSL URLs, which can cause warnings/broken padlock icons in address bars/loading of the resources being blocked) - although it might do so in the future.', 'simple-ssl-redirects').'</li>';
    321316        echo '</ul>';
Note: See TracChangeset for help on using the changeset viewer.