Ticket #11863: 11863.13.diff
File 11863.13.diff, 757 bytes (added by , 9 years ago) |
---|
-
src/wp-includes/post.php
6126 6126 6127 6127 $post = get_post( $post ); 6128 6128 6129 if ( strpos( $post->post_name, '- %trashed%' ) ) {6129 if ( strpos( $post->post_name, '-_trashed' ) ) { 6130 6130 return $post->post_name; 6131 6131 } 6132 6132 add_post_meta( $post->ID, '_wp_desired_post_slug', $post->post_name ); 6133 $post_name = _truncate_post_slug( $post->post_name, 190 ) . '- %trashed%';6133 $post_name = _truncate_post_slug( $post->post_name, 190 ) . '-_trashed'; 6134 6134 $wpdb->update( $wpdb->posts, array( 'post_name' => $post_name ), array( 'ID' => $post->ID ) ); 6135 6135 clean_post_cache( $post->ID ); 6136 6136 return $post_name;