Make WordPress Core

Ticket #7359: edit_links_ssl.diff

File edit_links_ssl.diff, 849 bytes (added by robertaccettura, 18 years ago)

Patch

  • link-template.php

     
    479479                break;
    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
    485485function edit_post_link( $link = 'Edit This', $before = '', $after = '' ) {
     
    509509                        return;
    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}
    515515