1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-02 11:23:15 +03:00

moving $wpdb outside of the conditional so both cases work

Fixes #182
This commit is contained in:
Tom McFarlin 2014-05-09 09:35:11 -04:00
parent f6917437fc
commit 2c29f1ca04

View file

@ -13,8 +13,11 @@
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit; exit;
} }
if (is_multisite()) {
global $wpdb; global $wpdb;
if ( is_multisite() ) {
$blogs = $wpdb->get_results( "SELECT blog_id FROM {$wpdb->blogs}", ARRAY_A ); $blogs = $wpdb->get_results( "SELECT blog_id FROM {$wpdb->blogs}", ARRAY_A );
/* @TODO: delete all transient, options and files you may have added /* @TODO: delete all transient, options and files you may have added
delete_transient( 'TRANSIENT_NAME' ); delete_transient( 'TRANSIENT_NAME' );
@ -30,6 +33,7 @@ if (is_multisite()) {
} }
*/ */
if ( $blogs ) { if ( $blogs ) {
foreach ( $blogs as $blog ) { foreach ( $blogs as $blog ) {
switch_to_blog( $blog['blog_id'] ); switch_to_blog( $blog['blog_id'] );
/* @TODO: delete all transient, options and files you may have added /* @TODO: delete all transient, options and files you may have added
@ -51,9 +55,8 @@ if (is_multisite()) {
restore_current_blog(); restore_current_blog();
} }
} }
}
else } else {
{
/* @TODO: delete all transient, options and files you may have added /* @TODO: delete all transient, options and files you may have added
delete_transient( 'TRANSIENT_NAME' ); delete_transient( 'TRANSIENT_NAME' );
delete_option('OPTION_NAME'); delete_option('OPTION_NAME');