Changeset 3396956
- Timestamp:
- 11/17/2025 07:32:46 AM (4 months ago)
- Location:
- wp-to-hootsuite
- Files:
-
- 6 edited
- 1 copied
-
tags/1.6.5 (copied) (copied from wp-to-hootsuite/trunk)
-
tags/1.6.5/lib/includes/class-wp-to-social-pro-log.php (modified) (1 diff)
-
tags/1.6.5/readme.txt (modified) (2 diffs)
-
tags/1.6.5/wp-to-hootsuite.php (modified) (2 diffs)
-
trunk/lib/includes/class-wp-to-social-pro-log.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-to-hootsuite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-to-hootsuite/tags/1.6.5/lib/includes/class-wp-to-social-pro-log.php
r3262556 r3396956 323 323 324 324 // Check if we need to hide the meta box by the logged in User's role. 325 $hide_meta_box = $this->base->get_class( 'settings' )->get_setting( 'hide_meta_box_by_roles', '[' . wp_get_current_user()->roles[0] . ']' );326 327 // Bail if we're hiding the meta boxes for the logged in User's role.328 if ( $hide_meta_box ) {329 return;325 if ( wp_get_current_user() && is_array( wp_get_current_user()->roles ) && ! empty( wp_get_current_user()->roles ) ) { 326 // Bail if we're hiding the meta boxes for the logged in User's role. 327 if ( $this->base->get_class( 'settings' )->get_setting( 'hide_meta_box_by_roles', '[' . wp_get_current_user()->roles[0] . ']' ) ) { 328 return; 329 } 330 330 } 331 331 -
wp-to-hootsuite/tags/1.6.5/readme.txt
r3379826 r3396956 6 6 Tested up to: 6.8.3 7 7 Requires PHP: 7.4 8 Stable tag: 1.6. 48 Stable tag: 1.6.5 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 89 89 == Changelog == 90 90 91 = 1.6.5 (2025-11-17) = 92 * Fix: Logs: PHP Warning: Undefined array key `0` 93 91 94 = 1.6.4 (2025-10-17) = 92 95 * Fix: Status: Text: Taxonomy: Retain non-Latin characters -
wp-to-hootsuite/tags/1.6.5/wp-to-hootsuite.php
r3379826 r3396956 9 9 * Plugin Name: WP to Hootsuite 10 10 * Plugin URI: http://www.wpzinc.com/plugins/wordpress-to-hootsuite-pro 11 * Version: 1.6. 411 * Version: 1.6.5 12 12 * Author: WP Zinc 13 13 * Author URI: http://www.wpzinc.com … … 28 28 29 29 // Define Plugin version and build date. 30 define( 'WP_TO_HOOTSUITE_PLUGIN_VERSION', '1.6. 4' );31 define( 'WP_TO_HOOTSUITE_PLUGIN_BUILD_DATE', '2025-1 0-17 10:00:00' );30 define( 'WP_TO_HOOTSUITE_PLUGIN_VERSION', '1.6.5' ); 31 define( 'WP_TO_HOOTSUITE_PLUGIN_BUILD_DATE', '2025-11-17 10:00:00' ); 32 32 33 33 // Define Plugin paths. -
wp-to-hootsuite/trunk/lib/includes/class-wp-to-social-pro-log.php
r3262556 r3396956 323 323 324 324 // Check if we need to hide the meta box by the logged in User's role. 325 $hide_meta_box = $this->base->get_class( 'settings' )->get_setting( 'hide_meta_box_by_roles', '[' . wp_get_current_user()->roles[0] . ']' );326 327 // Bail if we're hiding the meta boxes for the logged in User's role.328 if ( $hide_meta_box ) {329 return;325 if ( wp_get_current_user() && is_array( wp_get_current_user()->roles ) && ! empty( wp_get_current_user()->roles ) ) { 326 // Bail if we're hiding the meta boxes for the logged in User's role. 327 if ( $this->base->get_class( 'settings' )->get_setting( 'hide_meta_box_by_roles', '[' . wp_get_current_user()->roles[0] . ']' ) ) { 328 return; 329 } 330 330 } 331 331 -
wp-to-hootsuite/trunk/readme.txt
r3379826 r3396956 6 6 Tested up to: 6.8.3 7 7 Requires PHP: 7.4 8 Stable tag: 1.6. 48 Stable tag: 1.6.5 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 89 89 == Changelog == 90 90 91 = 1.6.5 (2025-11-17) = 92 * Fix: Logs: PHP Warning: Undefined array key `0` 93 91 94 = 1.6.4 (2025-10-17) = 92 95 * Fix: Status: Text: Taxonomy: Retain non-Latin characters -
wp-to-hootsuite/trunk/wp-to-hootsuite.php
r3379826 r3396956 9 9 * Plugin Name: WP to Hootsuite 10 10 * Plugin URI: http://www.wpzinc.com/plugins/wordpress-to-hootsuite-pro 11 * Version: 1.6. 411 * Version: 1.6.5 12 12 * Author: WP Zinc 13 13 * Author URI: http://www.wpzinc.com … … 28 28 29 29 // Define Plugin version and build date. 30 define( 'WP_TO_HOOTSUITE_PLUGIN_VERSION', '1.6. 4' );31 define( 'WP_TO_HOOTSUITE_PLUGIN_BUILD_DATE', '2025-1 0-17 10:00:00' );30 define( 'WP_TO_HOOTSUITE_PLUGIN_VERSION', '1.6.5' ); 31 define( 'WP_TO_HOOTSUITE_PLUGIN_BUILD_DATE', '2025-11-17 10:00:00' ); 32 32 33 33 // Define Plugin paths.
Note: See TracChangeset
for help on using the changeset viewer.