Changeset 18574
- Timestamp:
- 08/19/2011 05:04:16 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/press-this.php
r18570 r18574 29 29 30 30 $post = get_default_post_to_edit('post', true); 31 $post = get_object_vars($post); 31 32 $post_ID = $post['ID']; 32 33 $post['post_category'] = isset($_POST['post_category']) ? $_POST['post_category'] : null; 33 34 $post['tax_input'] = isset($_POST['tax_input']) ? $_POST['tax_input'] : null; 34 35 $post['post_title'] = isset($_POST['title']) ? $_POST['title'] : ''; 35 $post['post_content'] = isset($_POST[' post_content']) ? $_POST['post_content'] : '';36 $post['post_content'] = isset($_POST['content']) ? $_POST['content'] : ''; 36 37 37 38 $upload = false;
Note: See TracChangeset
for help on using the changeset viewer.