Changeset 3415297
- Timestamp:
- 12/09/2025 11:40:46 AM (4 months ago)
- Location:
- simple-ssl-redirects
- Files:
-
- 6 added
- 2 edited
-
tags/1.1.4 (added)
-
tags/1.1.4/index.php (added)
-
tags/1.1.4/readme.txt (added)
-
tags/1.1.4/simple-ssl-redirects.php (added)
-
tags/1.1.4/ssslr-admin-js.js (added)
-
tags/1.1.4/ssslr-admin-styles.css (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/simple-ssl-redirects.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-ssl-redirects/trunk/readme.txt
r3411028 r3415297 7 7 Tested up to: 6.9 8 8 Requires PHP: 5.3 9 Stable tag: 1.1. 39 Stable tag: 1.1.4 10 10 License: GPLv2 or later 11 11 … … 73 73 == Changelog == 74 74 75 = 1.1.4 = 76 77 * Minor bug fixes. 78 75 79 = 1.1.3 = 76 80 -
simple-ssl-redirects/trunk/simple-ssl-redirects.php
r3411028 r3415297 4 4 * Plugin Name: Simple SSL Redirects 5 5 * Description: Lightweight plugin to ensure access via SSL/HTTPS. Uses 301 (permanent) redirects for SEO benefits. 6 * Version: 1.1. 36 * Version: 1.1.4 7 7 * Requires at least: 4.6 8 8 * Requires PHP: 5.3 … … 184 184 { 185 185 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>'; 187 187 echo '</div>'; 188 188 } … … 191 191 { 192 192 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>'; 194 194 echo '</div>'; 195 195 } … … 312 312 echo '<div>'; 313 313 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>'; 320 315 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>'; 321 316 echo '</ul>';
Note: See TracChangeset
for help on using the changeset viewer.