Make WordPress Core


Ignore:
Timestamp:
10/08/2008 11:32:34 PM (18 years ago)
Author:
ryan
Message:

Draggable dash, first cut. Props mdawaffe. see #7552

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/template.php

    r9098 r9103  
    20592059 * @param unknown_type $mode
    20602060 */
    2061 function wp_comment_reply($position = '1', $checkbox = false, $mode = 'single') {
     2061function wp_comment_reply($position = '1', $checkbox = false, $mode = 'single', $table_row = true) {
    20622062    global $current_user;
    20632063
     
    20702070    }
    20712071?>
    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; ?>
    20742078    <div id="replyhead" style="display:none;"><?php _e('Reply to Comment'); ?></div>
    20752079
     
    21152119    <?php wp_nonce_field( 'replyto-comment', '_ajax_nonce', false ); ?>
    21162120    <?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; ?>
    21192126<?php
    21202127}
     
    26442651 * @param unknown_type $context
    26452652 * @param unknown_type $object
    2646  * @return unknown
     2653 * @return int number of meta_boxes
    26472654 */
    26482655function do_meta_boxes($page, $context, $object) {
Note: See TracChangeset for help on using the changeset viewer.