Changeset 14044
- Timestamp:
- 04/09/2010 03:17:57 PM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-comment.php
r12162 r14044 125 125 </div> 126 126 127 <?php do_meta_boxes('comment', 'normal', $comment); ?> 127 <?php 128 do_action('add_meta_boxes', 'comment', $comment); 129 do_action('add_meta_boxes_comment', $comment); 128 130 131 do_meta_boxes('comment', 'normal', $comment); 132 ?> 129 133 <input type="hidden" name="c" value="<?php echo esc_attr($comment->comment_ID) ?>" /> 130 134 <input type="hidden" name="p" value="<?php echo esc_attr($comment->comment_post_ID) ?>" /> -
trunk/wp-admin/edit-link-form.php
r12728 r14044 30 30 add_meta_box('linkxfndiv', __('Link Relationship (XFN)'), 'link_xfn_meta_box', 'link', 'normal', 'core'); 31 31 add_meta_box('linkadvanceddiv', __('Advanced'), 'link_advanced_meta_box', 'link', 'normal', 'core'); 32 33 do_action('add_meta_boxes', 'link', $link); 34 do_action('add_meta_boxes_link', $link); 32 35 33 36 do_action('do_meta_boxes', 'link', 'normal', $link);
Note: See TracChangeset
for help on using the changeset viewer.