Changeset 22114
- Timestamp:
- 10/04/2012 06:21:47 PM (12 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r21735 r22114 895 895 896 896 if ( $separate_comments ) { 897 $wp_query->comments_by_type = &separate_comments($comments);897 $wp_query->comments_by_type = separate_comments($comments); 898 898 $comments_by_type = &$wp_query->comments_by_type; 899 899 } -
trunk/wp-includes/link-template.php
r22095 r22114 979 979 */ 980 980 function get_edit_comment_link( $comment_id = 0 ) { 981 $comment = &get_comment( $comment_id );981 $comment = get_comment( $comment_id ); 982 982 983 983 if ( !current_user_can( 'edit_comment', $comment->comment_ID ) ) -
trunk/wp-includes/post.php
r22060 r22114 3654 3654 3655 3655 if ( $child_of || $hierarchical ) 3656 $pages = &get_page_children($child_of, $pages);3656 $pages = get_page_children($child_of, $pages); 3657 3657 3658 3658 if ( !empty($exclude_tree) ) { -
trunk/wp-includes/taxonomy.php
r22109 r22114 2989 2989 if ( !is_object($term) ) { 2990 2990 if ( is_int($term) ) { 2991 $term = &get_term($term, $taxonomy);2991 $term = get_term($term, $taxonomy); 2992 2992 } else { 2993 $term = &get_term_by('slug', $term, $taxonomy);2993 $term = get_term_by('slug', $term, $taxonomy); 2994 2994 } 2995 2995 }
Note: See TracChangeset
for help on using the changeset viewer.