Make WordPress Core

Changeset 8380


Ignore:
Timestamp:
07/20/2008 04:46:59 AM (16 years ago)
Author:
ryan
Message:

Make get_edit_post_link() and get_edit_comment_link() SSL aware. Props robertaccettura. fixes #7359 for trunk

File:
1 edited

Legend:

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

    r8334 r8380  
    480480    endswitch;
    481481   
    482     return apply_filters( 'get_edit_post_link', get_bloginfo( 'wpurl' ) . "/wp-admin/$file.php?{$action}$var=$post->ID", $post->ID );
     482    return apply_filters( 'get_edit_post_link', admin_url("$file.php?{$action}$var=$post->ID"), $post->ID );
    483483}
    484484
     
    510510    }
    511511
    512     $location = get_bloginfo( 'wpurl' ) . '/wp-admin/comment.php?action=editcomment&c=' . $comment->comment_ID;
     512    $location = admin_url('comment.php?action=editcomment&c=') . $comment->comment_ID;
    513513    return apply_filters( 'get_edit_comment_link', $location );
    514514}
Note: See TracChangeset for help on using the changeset viewer.