Changeset 28323
- Timestamp:
- 05/06/2014 09:14:35 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r28285 r28323 1319 1319 return false; 1320 1320 1321 $link = '';1322 1323 1321 if ( get_option('comment_registration') && ! is_user_logged_in() ) 1324 1322 $link = '<a rel="nofollow" class="comment-reply-login" href="' . esc_url( wp_login_url( get_permalink() ) ) . '">' . $login_text . '</a>'; … … 1585 1583 $output .= '<ol class="children">' . "\n"; 1586 1584 break; 1585 case 'ul': 1587 1586 default: 1588 case 'ul':1589 1587 $output .= '<ul class="children">' . "\n"; 1590 1588 break; … … 1612 1610 $output .= "</ol><!-- .children -->\n"; 1613 1611 break; 1612 case 'ul': 1614 1613 default: 1615 case 'ul':1616 1614 $output .= "</ul><!-- .children -->\n"; 1617 1615 break; … … 2046 2044 if ( null === $post_id ) 2047 2045 $post_id = get_the_ID(); 2048 else2049 $id = $post_id;2050 2046 2051 2047 $commenter = wp_get_current_commenter();
Note: See TracChangeset
for help on using the changeset viewer.