Changeset 2799468
- Timestamp:
- 10/16/2022 03:24:21 AM (3 years ago)
- Location:
- multisite-author-bio/trunk
- Files:
-
- 2 edited
-
classes/mab-plugin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multisite-author-bio/trunk/classes/mab-plugin.php
r2794626 r2799468 82 82 $main_site_id = get_main_site_id(); 83 83 84 switch_to_blog( $main_site_id ); 84 if( function_exists('is_multisite') && is_multisite() ) { 85 switch_to_blog( $main_site_id ); 86 } 85 87 86 88 global $wpdb; … … 104 106 $main_site_id = get_main_site_id(); 105 107 106 switch_to_blog( $main_site_id ); 108 if( function_exists('is_multisite') && is_multisite() ) { 109 switch_to_blog( $main_site_id ); 110 } 107 111 108 112 if( $clear_data ) { -
multisite-author-bio/trunk/readme.txt
r2794649 r2799468 2 2 3 3 Contributors: CodeAdapted 4 Tags: author, author bio, author description, multisite, multisite author , multisite author bio, multisite author description4 Tags: author, author bio, author description, multisite, multisite author 5 5 Requires at least: 5.0 or higher 6 6 Tested up to: 6.0.2 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 71 71 72 72 == Changelog == 73 = 1.0 =73 = 1.0.0 = 74 74 * Plugin released. 75 = 1.0.1 = 76 * Fix for non-multisite installations.
Note: See TracChangeset
for help on using the changeset viewer.