Changeset 9807 for trunk/wp-admin/edit-comments.php
- Timestamp:
- 11/20/2008 04:51:47 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-comments.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-comments.php
r9799 r9807 10 10 require_once('admin.php'); 11 11 12 $title = __('Edit Comments');13 12 wp_enqueue_script('admin-comments'); 14 13 enqueue_comment_hotkeys_js(); … … 68 67 } 69 68 69 $post_id = isset($_GET['p']) ? (int) $_GET['p'] : 0; 70 71 if ( $post_id ) 72 $title = sprintf(__('Edit Comments on “%s”'), wp_html_excerpt(_draft_or_post_title($post_id), 50)); 73 else 74 $title = __('Edit Comments'); 75 70 76 require_once('admin-header.php'); 71 77 … … 75 81 76 82 $comment_type = !empty($_GET['comment_type']) ? attribute_escape($_GET['comment_type']) : ''; 77 78 $post_id = isset($_GET['p']) ? (int) $_GET['p'] : 0;79 83 80 84 $search_dirty = ( isset($_GET['s']) ) ? $_GET['s'] : '';
Note: See TracChangeset
for help on using the changeset viewer.