Changeset 3350357
- Timestamp:
- 08/26/2025 11:06:45 AM (7 months ago)
- Location:
- social-post-flow
- Files:
-
- 6 edited
- 1 copied
-
tags/1.0.5 (copied) (copied from social-post-flow/trunk)
-
tags/1.0.5/includes/integrations/class-social-post-flow-wpml.php (modified) (3 diffs)
-
tags/1.0.5/readme.txt (modified) (2 diffs)
-
tags/1.0.5/social-post-flow.php (modified) (2 diffs)
-
trunk/includes/integrations/class-social-post-flow-wpml.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/social-post-flow.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-post-flow/tags/1.0.5/includes/integrations/class-social-post-flow-wpml.php
r3344663 r3350357 45 45 46 46 // 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' ) ) { 48 49 return $status; 49 50 } … … 69 70 70 71 // 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; 73 75 } 74 76 … … 123 125 124 126 // 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' ) ) { 126 129 return $conditions_met; 127 130 } -
social-post-flow/tags/1.0.5/readme.txt
r3348057 r3350357 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.0. 48 Stable tag: 1.0.5 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 155 155 == Changelog == 156 156 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 157 160 = 1.0.4 (2025-08-21) = 158 161 * Added: Pinterest support -
social-post-flow/tags/1.0.5/social-post-flow.php
r3348057 r3350357 9 9 * Plugin Name: Social Post Flow 10 10 * Plugin URI: http://www.socialpostflow.com/integrations/wordpress 11 * Version: 1.0. 411 * Version: 1.0.5 12 12 * Author: Social Post Flow 13 13 * Author URI: http://www.socialpostflow.com … … 28 28 29 29 // 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-2 118:00:00' );30 define( 'SOCIAL_POST_FLOW_PLUGIN_VERSION', '1.0.5' ); 31 define( 'SOCIAL_POST_FLOW_PLUGIN_BUILD_DATE', '2025-08-26 18:00:00' ); 32 32 33 33 // Define Plugin paths. -
social-post-flow/trunk/includes/integrations/class-social-post-flow-wpml.php
r3344663 r3350357 45 45 46 46 // 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' ) ) { 48 49 return $status; 49 50 } … … 69 70 70 71 // 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; 73 75 } 74 76 … … 123 125 124 126 // 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' ) ) { 126 129 return $conditions_met; 127 130 } -
social-post-flow/trunk/readme.txt
r3348057 r3350357 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.0. 48 Stable tag: 1.0.5 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 155 155 == Changelog == 156 156 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 157 160 = 1.0.4 (2025-08-21) = 158 161 * Added: Pinterest support -
social-post-flow/trunk/social-post-flow.php
r3348057 r3350357 9 9 * Plugin Name: Social Post Flow 10 10 * Plugin URI: http://www.socialpostflow.com/integrations/wordpress 11 * Version: 1.0. 411 * Version: 1.0.5 12 12 * Author: Social Post Flow 13 13 * Author URI: http://www.socialpostflow.com … … 28 28 29 29 // 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-2 118:00:00' );30 define( 'SOCIAL_POST_FLOW_PLUGIN_VERSION', '1.0.5' ); 31 define( 'SOCIAL_POST_FLOW_PLUGIN_BUILD_DATE', '2025-08-26 18:00:00' ); 32 32 33 33 // Define Plugin paths.
Note: See TracChangeset
for help on using the changeset viewer.