Plugin Directory

Changeset 3307123


Ignore:
Timestamp:
06/05/2025 02:19:35 PM (10 months ago)
Author:
invoked
Message:

ssl fix in trunk

Location:
biblio-dispatch/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • biblio-dispatch/trunk/bibliodispatch-plugin.php

    r3233977 r3307123  
    268268    $store_name = get_option($store_name_option_name);
    269269    $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    }
    274276    // If any configuration is missing, display a notice
    275277    if (!$consumer_key || !$consumer_secret || !$store_name || !$site_url) {
  • biblio-dispatch/trunk/readme.txt

    r3232753 r3307123  
    55Requires at least: 6.3
    66Tested up to: 6.6
    7 Stable tag: 1.2.3
     7Stable tag: 1.2.4
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    9898General improvements and bug fixes.
    9999
     100= 1.2.4 =
     101Resolved SSL verification issue
     102
    100103== A brief Markdown Example ==
    101104
Note: See TracChangeset for help on using the changeset viewer.