Ticket #19390: 19390.diff
| File 19390.diff, 833 bytes (added by , 14 years ago) |
|---|
-
wp-includes/js/autosave.dev.js
283 283 } 284 284 285 285 if ( fullscreen && fullscreen.settings.visible ) { 286 post_data["post_title"] = jQuery('#wp-fullscreen-title').val() ;287 post_data["content"] = jQuery("#wp_mce_fullscreen").val() ;286 post_data["post_title"] = jQuery('#wp-fullscreen-title').val() || ''; 287 post_data["content"] = jQuery("#wp_mce_fullscreen").val() || ''; 288 288 } else { 289 post_data["post_title"] = jQuery("#title").val() 290 post_data["content"] = jQuery("#content").val() ;289 post_data["post_title"] = jQuery("#title").val() || ''; 290 post_data["content"] = jQuery("#content").val() || ''; 291 291 } 292 292 293 293 if ( jQuery('#post_name').val() )