Changeset 48315 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 07/05/2020 11:19:35 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r48121 r48315 1275 1275 'meta' => $meta, 1276 1276 ); 1277 } 1278 1279 /** 1280 * Deletes am associated signup entry when a user is deleted from the database. 1281 * 1282 * @since 5.5.0 1283 * 1284 * @param int $id ID of the user to delete. 1285 * @param int|null $reassign ID of the user to reassign posts and links to. 1286 * @param WP_User $user User object. 1287 */ 1288 function wp_delete_signup_on_user_delete( $id, $reassign, $user ) { 1289 global $wpdb; 1290 1291 $wpdb->delete( $wpdb->signups, array( 'user_login' => $user->user_login ) ); 1277 1292 } 1278 1293
Note: See TracChangeset
for help on using the changeset viewer.