Handle error response in autosave_update_slug(), props nacin, fixes #16975

git-svn-id: https://develop.svn.wordpress.org/trunk@17565 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2011-03-27 20:09:09 +00:00
parent 43d4c448bf
commit d400b19f92
3 changed files with 6 additions and 4 deletions

View File

@ -161,9 +161,11 @@ function autosave_update_slug(post_id) {
samplepermalinknonce: jQuery('#samplepermalinknonce').val() samplepermalinknonce: jQuery('#samplepermalinknonce').val()
}, },
function(data) { function(data) {
if ( data !== '-1' ) {
jQuery('#edit-slug-box').html(data); jQuery('#edit-slug-box').html(data);
makeSlugeditClickable(); makeSlugeditClickable();
} }
}
); );
} }
} }

File diff suppressed because one or more lines are too long

View File

@ -103,7 +103,7 @@ function wp_default_scripts( &$scripts ) {
'l10n_print_after' => 'try{convertEntities(wpAjax);}catch(e){};' 'l10n_print_after' => 'try{convertEntities(wpAjax);}catch(e){};'
) ); ) );
$scripts->add( 'autosave', "/wp-includes/js/autosave$suffix.js", array('schedule', 'wp-ajax-response'), '20101004' ); $scripts->add( 'autosave', "/wp-includes/js/autosave$suffix.js", array('schedule', 'wp-ajax-response'), '20110327' );
$scripts->add_data( 'autosave', 'group', 1 ); $scripts->add_data( 'autosave', 'group', 1 );
$scripts->add( 'wp-lists', "/wp-includes/js/wp-lists$suffix.js", array('wp-ajax-response'), '20101222' ); $scripts->add( 'wp-lists', "/wp-includes/js/wp-lists$suffix.js", array('wp-ajax-response'), '20101222' );