Spacing fix from markjaquith. fixes #1665
git-svn-id: https://develop.svn.wordpress.org/trunk@2861 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d7bfd79cb6
commit
3c14e443da
@ -179,7 +179,7 @@ function edit_post_link($link = 'Edit This', $before = '', $after = '') {
|
||||
}
|
||||
|
||||
$location = get_settings('siteurl') . "/wp-admin/post.php?action=edit&post=$post->ID";
|
||||
echo "$before <a href=\"$location\">$link</a>" . $after;
|
||||
echo $before . "<a href=\"$location\">$link</a>" . $after;
|
||||
}
|
||||
|
||||
function edit_comment_link($link = 'Edit This', $before = '', $after = '') {
|
||||
@ -192,7 +192,7 @@ function edit_comment_link($link = 'Edit This', $before = '', $after = '') {
|
||||
}
|
||||
|
||||
$location = get_settings('siteurl') . "/wp-admin/post.php?action=editcomment&comment=$comment->comment_ID";
|
||||
echo "$before <a href='$location'>$link</a>" . $after;
|
||||
echo $before . "<a href='$location'>$link</a>" . $after;
|
||||
}
|
||||
|
||||
// Navigation links
|
||||
|
Loading…
Reference in New Issue
Block a user