Changeset 2059 for trunk/wp-admin/post.php
- Timestamp:
- 01/06/2005 10:51:44 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/post.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/post.php
r2050 r2059 31 31 $post_pingback = intval($_POST['post_pingback']); 32 32 $content = apply_filters('content_save_pre', $_POST['content']); 33 $content = format_to_post($content);34 33 $excerpt = apply_filters('excerpt_save_pre',$_POST['excerpt']); 35 $excerpt = format_to_post($excerpt);36 34 $post_title = $_POST['post_title']; 37 35 $post_categories = $_POST['post_category']; … … 237 235 if (!$post_categories) $post_categories[] = 1; 238 236 $content = apply_filters('content_save_pre', $_POST['content']); 239 $content = format_to_post($content);240 237 $excerpt = apply_filters('excerpt_save_pre', $_POST['excerpt']); 241 $excerpt = format_to_post($excerpt);242 238 $post_title = $_POST['post_title']; 243 239 $prev_status = $_POST['prev_status']; … … 608 604 } 609 605 $content = apply_filters('comment_save_pre', $_POST['content']); 610 $content = format_to_post($content);611 606 612 607 $result = $wpdb->query("
Note: See TracChangeset
for help on using the changeset viewer.