Plugin Directory

Changeset 3350357


Ignore:
Timestamp:
08/26/2025 11:06:45 AM (7 months ago)
Author:
socialpostflow
Message:

Update to version 1.0.5 from GitHub

Location:
social-post-flow
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • social-post-flow/tags/1.0.5/includes/integrations/class-social-post-flow-wpml.php

    r3344663 r3350357  
    4545
    4646        // Bail if WPML not active.
    47         if ( ! function_exists( 'wpml_get_language_information' ) ) {
     47        // Don't use wpml_get_language_information(), as this is defined in Polylang.
     48        if ( ! function_exists( 'wpml_get_active_languages_filter' ) ) {
    4849            return $status;
    4950        }
     
    6970
    7071        // Bail if WPML not active.
    71         if ( ! function_exists( 'wpml_get_language_information' ) ) {
    72             return;
     72        // Don't use wpml_get_language_information(), as this is defined in Polylang.
     73        if ( ! function_exists( 'wpml_get_active_languages_filter' ) ) {
     74            return $status;
    7375        }
    7476
     
    123125
    124126        // Bail if WPML isn't active.
    125         if ( ! function_exists( 'wpml_get_language_information' ) ) {
     127        // Don't use wpml_get_language_information(), as this is defined in Polylang.
     128        if ( ! function_exists( 'wpml_get_active_languages_filter' ) ) {
    126129            return $conditions_met;
    127130        }
  • social-post-flow/tags/1.0.5/readme.txt

    r3348057 r3350357  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 1.0.4
     8Stable tag: 1.0.5
    99License: GPLv3 or later
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    155155== Changelog ==
    156156
     157= 1.0.5 (2025-08-25) =
     158* Fix: Status: Conditions: Polylang: Fatal error due to Polylang including WPML's `wpml_get_language_information` method
     159
    157160= 1.0.4 (2025-08-21) =
    158161* Added: Pinterest support
  • social-post-flow/tags/1.0.5/social-post-flow.php

    r3348057 r3350357  
    99 * Plugin Name: Social Post Flow
    1010 * Plugin URI: http://www.socialpostflow.com/integrations/wordpress
    11  * Version: 1.0.4
     11 * Version: 1.0.5
    1212 * Author: Social Post Flow
    1313 * Author URI: http://www.socialpostflow.com
     
    2828
    2929// Define Plugin version and build date.
    30 define( 'SOCIAL_POST_FLOW_PLUGIN_VERSION', '1.0.4' );
    31 define( 'SOCIAL_POST_FLOW_PLUGIN_BUILD_DATE', '2025-08-21 18:00:00' );
     30define( 'SOCIAL_POST_FLOW_PLUGIN_VERSION', '1.0.5' );
     31define( 'SOCIAL_POST_FLOW_PLUGIN_BUILD_DATE', '2025-08-26 18:00:00' );
    3232
    3333// Define Plugin paths.
  • social-post-flow/trunk/includes/integrations/class-social-post-flow-wpml.php

    r3344663 r3350357  
    4545
    4646        // Bail if WPML not active.
    47         if ( ! function_exists( 'wpml_get_language_information' ) ) {
     47        // Don't use wpml_get_language_information(), as this is defined in Polylang.
     48        if ( ! function_exists( 'wpml_get_active_languages_filter' ) ) {
    4849            return $status;
    4950        }
     
    6970
    7071        // Bail if WPML not active.
    71         if ( ! function_exists( 'wpml_get_language_information' ) ) {
    72             return;
     72        // Don't use wpml_get_language_information(), as this is defined in Polylang.
     73        if ( ! function_exists( 'wpml_get_active_languages_filter' ) ) {
     74            return $status;
    7375        }
    7476
     
    123125
    124126        // Bail if WPML isn't active.
    125         if ( ! function_exists( 'wpml_get_language_information' ) ) {
     127        // Don't use wpml_get_language_information(), as this is defined in Polylang.
     128        if ( ! function_exists( 'wpml_get_active_languages_filter' ) ) {
    126129            return $conditions_met;
    127130        }
  • social-post-flow/trunk/readme.txt

    r3348057 r3350357  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 1.0.4
     8Stable tag: 1.0.5
    99License: GPLv3 or later
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    155155== Changelog ==
    156156
     157= 1.0.5 (2025-08-25) =
     158* Fix: Status: Conditions: Polylang: Fatal error due to Polylang including WPML's `wpml_get_language_information` method
     159
    157160= 1.0.4 (2025-08-21) =
    158161* Added: Pinterest support
  • social-post-flow/trunk/social-post-flow.php

    r3348057 r3350357  
    99 * Plugin Name: Social Post Flow
    1010 * Plugin URI: http://www.socialpostflow.com/integrations/wordpress
    11  * Version: 1.0.4
     11 * Version: 1.0.5
    1212 * Author: Social Post Flow
    1313 * Author URI: http://www.socialpostflow.com
     
    2828
    2929// Define Plugin version and build date.
    30 define( 'SOCIAL_POST_FLOW_PLUGIN_VERSION', '1.0.4' );
    31 define( 'SOCIAL_POST_FLOW_PLUGIN_BUILD_DATE', '2025-08-21 18:00:00' );
     30define( 'SOCIAL_POST_FLOW_PLUGIN_VERSION', '1.0.5' );
     31define( 'SOCIAL_POST_FLOW_PLUGIN_BUILD_DATE', '2025-08-26 18:00:00' );
    3232
    3333// Define Plugin paths.
Note: See TracChangeset for help on using the changeset viewer.