diff --git a/wp-admin/js/inline-edit-post.js b/wp-admin/js/inline-edit-post.js
index 48e635f..c877039 100644
|
a
|
b
|
inlineEditPost = {
|
| 265 | 265 | |
| 266 | 266 | if (r) { |
| 267 | 267 | if ( -1 !== r.indexOf( '<tr' ) ) { |
| 268 | | $(inlineEditPost.what+id).remove(); |
| 269 | | $('#edit-'+id).before(r).remove(); |
| 270 | | $(inlineEditPost.what+id).hide().fadeIn(); |
| | 268 | $('#edit-'+id).remove(); |
| | 269 | $(inlineEditPost.what+id).empty().append($(r).html()).fadeIn(); |
| 271 | 270 | } else { |
| 272 | 271 | r = r.replace( /<.[^<>]*?>/g, '' ); |
| 273 | 272 | $('#edit-'+id+' .inline-edit-save .error').html(r).show(); |