PluginProbe
Vimeography: Vimeo Video Gallery WordPress Plugin / 2.2
Vimeography: Vimeo Video Gallery WordPress Plugin v2.2
2.4.9 2.4.8 trunk 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 0.6 0.6.1 0.6.2 0.6.3 0.6.4 0.6.5 0.6.6 0.6.7 0.6.8 0.6.8.1 0.6.9 0.6.9.1 0.6.9.2 0.7 0.8 All 103 releases
← All changes | lib/database.php +8 -13 trunk2.2 View file →
@@ -36,21 +36,16 @@
36 36 // Get this so we can switch back to it later
37 37 $original_blog_id = get_current_blog_id();
38 38
39 39 // Get all blogs in the network and activate plugin on each one
40 - $blogs = $wpdb->get_results(
41 - $wpdb->prepare(
42 - "
43 - SELECT blog_id
44 - FROM {$wpdb->blogs}
45 - WHERE site_id = %s
46 - AND spam = '0'
47 - AND deleted = '0'
48 - AND archived = '0'
49 - ",
50 - $wpdb->siteid
51 - )
52 - );
40 + $blogs = $wpdb->get_results("
41 + SELECT blog_id
42 + FROM {$wpdb->blogs}
43 + WHERE site_id = '{$wpdb->siteid}'
44 + AND spam = '0'
45 + AND deleted = '0'
46 + AND archived = '0'
47 + ");
53 48
54 49 foreach ( $blogs as $blog ) {
55 50 switch_to_blog( $blog->blog_id );
56 51 self::vimeography_update_tables();