PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 3.4.3
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v3.4.3
3.4.3 3.4.2 3.4.1 3.4.0 3.3.9 3.3.8 3.3.7 3.3.6 3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 All 196 releases
← All changes | admin/class-convertkit-admin-bulk-edit.php +7 -0 3.3.33.4.3 View file →
@@ -110,8 +110,15 @@
110 110 $post_ids = array_map( 'intval', (array) $_REQUEST['post'] );
111 111
112 112 // Iterate through each Post, updating its settings.
113 113 foreach ( $post_ids as $post_id ) {
114 + // Skip Posts the current user cannot edit.
115 + // The post type's edit_posts capability checked above does not grant
116 + // permission to edit every Post of that type.
117 + if ( ! current_user_can( 'edit_post', $post_id ) ) {
118 + continue;
119 + }
120 +
114 121 WP_ConvertKit()->get_class( 'admin_post' )->save_post_settings( $post_id, wp_unslash( $_REQUEST['wp-convertkit'] ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
115 122 }
116 123
117 124 }