Revert [5275] - [5277]. Fix it later. see #4153

git-svn-id: http://svn.automattic.com/wordpress/trunk@5282 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-04-17 23:00:35 +00:00
parent 25fcd398e5
commit 49166ab920
1 changed files with 21 additions and 32 deletions

View File

@ -274,50 +274,39 @@ function get_post_comments_feed_link($post_id = '', $feed = 'rss2') {
return apply_filters('post_comments_feed_link', $url);
}
function get_edit_post_link( $link = 'Edit This' ) {
function edit_post_link($link = 'Edit This', $before = '', $after = '') {
global $post;
if ( is_attachment() ) {
if ( is_attachment() )
return;
}
if ( $post->post_type == 'page' ) {
if ( !current_user_can( 'edit_page', $post->ID ) ) {
if( $post->post_type == 'page' ) {
if ( ! current_user_can('edit_page', $post->ID) )
return;
}
$file = 'page';
} else {
if ( !current_user_can( 'edit_post', $post->ID ) ) {
if ( ! current_user_can('edit_post', $post->ID) )
return;
}
$file = 'post';
}
return '<a href="' . get_option( 'wpurl' ) . '/wp-admin/' . $file . '.php?action=edit&amp;post=' . $post->ID . '>' . $link . '</a>' . $after;
$location = get_option('siteurl') . "/wp-admin/{$file}.php?action=edit&amp;post=$post->ID";
echo $before . "<a href=\"$location\">$link</a>" . $after;
}
function edit_post_link( $link = 'Edit This', $before = '', $after = '' ) {
echo $before . get_edit_post_link( $link ) . $after;
}
function get_edit_comment_link( $link = 'Edit This' ) {
function edit_comment_link($link = 'Edit This', $before = '', $after = '') {
global $post, $comment;
if ( $post->post_type == 'page' ) {
if ( !current_user_can( 'edit_page', $post->ID ) ) {
return;
}
} else {
if ( !current_user_can( 'edit_post', $post->ID ) ) {
return;
}
}
return '<a href="' . get_option( 'siteurl' ) . '/wp-admin/comment.php?action=editcomment&amp;c=' . $comment->comment_ID . '">' . $link . '</a>';
}
function edit_comment_link( $link = 'Edit This', $before = '', $after = '' ) {
echo $before . get_edit_comment_link( $link ) . $after;
if( $post->post_type == 'page' ){
if ( ! current_user_can('edit_page', $post->ID) )
return;
} else {
if ( ! current_user_can('edit_post', $post->ID) )
return;
}
$location = get_option('siteurl') . "/wp-admin/comment.php?action=editcomment&amp;c=$comment->comment_ID";
echo $before . "<a href='$location'>$link</a>" . $after;
}
// Navigation links