Changeset 4966 for trunk/wp-admin/edit.php
- Timestamp:
- 03/04/2007 06:48:19 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit.php
r4935 r4966 22 22 if (0 != $i) 23 23 echo ', '; 24 $draft->post_title = stripslashes($draft->post_title);24 $draft->post_title = apply_filters('the_title', stripslashes($draft->post_title)); 25 25 if ($draft->post_title == '') 26 26 $draft->post_title = sprintf(__('Post #%s'), $draft->ID); … … 39 39 if (0 != $i) 40 40 echo ', '; 41 $draft->post_title = stripslashes($draft->post_title);41 $draft->post_title = apply_filters('the_title', stripslashes($draft->post_title)); 42 42 if ($draft->post_title == '') 43 43 $draft->post_title = sprintf(__('Post #%s'), $draft->ID);
Note: See TracChangeset
for help on using the changeset viewer.