Ticket #22491: 22491.diff
File 22491.diff, 997 bytes (added by , 12 years ago) |
---|
-
wp-admin/post-new.php
43 43 if ( ! wp_next_scheduled( 'wp_scheduled_auto_draft_delete' ) ) 44 44 wp_schedule_event( time(), 'daily', 'wp_scheduled_auto_draft_delete' ); 45 45 46 wp_enqueue_script('autosave'); 46 if ( 'attachment' !== $post_type ) 47 wp_enqueue_script('autosave'); 47 48 48 49 // Show post form. 49 50 $post = get_default_post_to_edit( $post_type, true ); -
wp-admin/post.php
169 169 add_action('admin_notices', '_admin_notice_post_locked' ); 170 170 } else { 171 171 $active_post_lock = wp_set_post_lock( $post->ID ); 172 wp_enqueue_script('autosave'); 172 173 if ( 'attachment' !== $post_type ) 174 wp_enqueue_script('autosave'); 173 175 } 174 176 175 177 $title = $post_type_object->labels->edit_item;