Make WordPress Core


Ignore:
Timestamp:
10/04/2012 06:21:47 PM (12 years ago)
Author:
ryan
Message:

Avoid 'Only variables should be assigned by reference' warning. Props wonderboymusic. see #21865

File:
1 edited

Legend:

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

    r22095 r22114  
    979979 */
    980980function get_edit_comment_link( $comment_id = 0 ) {
    981     $comment = &get_comment( $comment_id );
     981    $comment = get_comment( $comment_id );
    982982
    983983    if ( !current_user_can( 'edit_comment', $comment->comment_ID ) )
Note: See TracChangeset for help on using the changeset viewer.