Changeset 29908
- Timestamp:
- 10/15/2014 09:55:31 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r29846 r29908 1840 1840 <?php comment_text( get_comment_id(), array_merge( $args, array( 'add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> 1841 1841 1842 <div class="reply"> 1843 <?php comment_reply_link( array_merge( $args, array( 'add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> 1844 </div> 1842 <?php 1843 comment_reply_link( array_merge( $args, array( 1844 'add_below' => $add_below, 1845 'depth' => $depth, 1846 'max_depth' => $args['max_depth'], 1847 'before' => '<div class="reply">', 1848 'after' => '</div>' 1849 ) ) ); 1850 ?> 1851 1845 1852 <?php if ( 'div' != $args['style'] ) : ?> 1846 1853 </div> … … 1890 1897 </div><!-- .comment-content --> 1891 1898 1892 <div class="reply"> 1893 <?php comment_reply_link( array_merge( $args, array( 'add_below' => 'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> 1894 </div><!-- .reply --> 1899 <?php 1900 comment_reply_link( array_merge( $args, array( 1901 'add_below' => 'div-comment', 1902 'depth' => $depth, 1903 'max_depth' => $args['max_depth'], 1904 'before' => '<div class="reply">', 1905 'after' => '</div>' 1906 ) ) ); 1907 ?> 1895 1908 </article><!-- .comment-body --> 1896 1909 <?php
Note: See TracChangeset
for help on using the changeset viewer.