Changeset 3307123
- Timestamp:
- 06/05/2025 02:19:35 PM (10 months ago)
- Location:
- biblio-dispatch/trunk
- Files:
-
- 2 edited
-
bibliodispatch-plugin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
biblio-dispatch/trunk/bibliodispatch-plugin.php
r3233977 r3307123 268 268 $store_name = get_option($store_name_option_name); 269 269 $site_url = get_option($site_url); 270 271 echo '<div class="notice notice-warning is-dismissible">'; 272 echo '<p><strong>HTTPS is required:</strong> The Biblio Dispatch plugin needs a secure HTTPS protocol.Please enable SSL.</p>'; 273 echo '</div>'; 270 if (!is_ssl() ) { 271 // Site is not using HTTPS 272 echo '<div class="notice notice-warning is-dismissible">'; 273 echo '<p><strong>HTTPS is required:</strong> The Biblio Dispatch plugin needs a secure HTTPS protocol.Please enable SSL.</p>'; 274 echo '</div>'; 275 } 274 276 // If any configuration is missing, display a notice 275 277 if (!$consumer_key || !$consumer_secret || !$store_name || !$site_url) { -
biblio-dispatch/trunk/readme.txt
r3232753 r3307123 5 5 Requires at least: 6.3 6 6 Tested up to: 6.6 7 Stable tag: 1.2. 37 Stable tag: 1.2.4 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 98 98 General improvements and bug fixes. 99 99 100 = 1.2.4 = 101 Resolved SSL verification issue 102 100 103 == A brief Markdown Example == 101 104
Note: See TracChangeset
for help on using the changeset viewer.