Changeset 7708
- Timestamp:
- 04/16/08 22:56:37 (4 months ago)
- Files:
-
- trunk/wp-admin/edit-form-advanced.php (modified) (1 diff)
- trunk/wp-includes/js/autosave.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/edit-form-advanced.php
r7689 r7708 55 55 <input type="hidden" id="hiddenaction" name="action" value="<?php echo $form_action ?>" /> 56 56 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo $form_action ?>" /> 57 <input type="hidden" name="post_author" value="<?php echo attribute_escape( $post->post_author ); ?>" />57 <input type="hidden" id="post_author" name="post_author" value="<?php echo attribute_escape( $post->post_author ); ?>" /> 58 58 <input type="hidden" id="post_type" name="post_type" value="<?php echo $post->post_type ?>" /> 59 59 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo $post->post_status ?>" /> trunk/wp-includes/js/autosave.js
r7533 r7708 176 176 if ( jQuery("#ping_status").attr("checked") ) 177 177 post_data["ping_status"] = 'open'; 178 if ( jQuery("#excerpt"))178 if ( jQuery("#excerpt") ) 179 179 post_data["excerpt"] = jQuery("#excerpt").val(); 180 if ( jQuery("#post_author") ) 181 post_data["post_author"] = jQuery("#post_author").val(); 180 182 181 183 // Don't run while the TinyMCE spellcheck is on. Why? Who knows.
