Changeset 9103 for trunk/wp-admin/includes/template.php
- Timestamp:
- 10/08/2008 11:32:34 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/template.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r9098 r9103 2059 2059 * @param unknown_type $mode 2060 2060 */ 2061 function wp_comment_reply($position = '1', $checkbox = false, $mode = 'single' ) {2061 function wp_comment_reply($position = '1', $checkbox = false, $mode = 'single', $table_row = true) { 2062 2062 global $current_user; 2063 2063 … … 2070 2070 } 2071 2071 ?> 2072 <form method="get" action=""><table style="display:none;"><tbody id="com-reply"> 2073 <tr id="replyrow"><td colspan="6"> 2072 <form method="get" action=""> 2073 <?php if ( $table_row ) : ?> 2074 <table style="display:none;"><tbody id="com-reply"><tr id="replyrow"><td colspan="6"> 2075 <?php else : ?> 2076 <div id="com-reply" style="display:none;"><div id="replyrow"> 2077 <?php endif; ?> 2074 2078 <div id="replyhead" style="display:none;"><?php _e('Reply to Comment'); ?></div> 2075 2079 … … 2115 2119 <?php wp_nonce_field( 'replyto-comment', '_ajax_nonce', false ); ?> 2116 2120 <?php wp_comment_form_unfiltered_html_nonce(); ?> 2117 </td></tr> 2118 </tbody></table></form> 2121 <?php if ( $table_row ) : ?> 2122 </td></tr></tbody></table></form> 2123 <?php else : ?> 2124 </div></div> 2125 <?php endif; ?> 2119 2126 <?php 2120 2127 } … … 2644 2651 * @param unknown_type $context 2645 2652 * @param unknown_type $object 2646 * @return unknown2653 * @return int number of meta_boxes 2647 2654 */ 2648 2655 function do_meta_boxes($page, $context, $object) {
Note: See TracChangeset
for help on using the changeset viewer.