Ensure the parentlink is trailingslashed when building the url - don't trim / off the front. Fixes #2801 props Libertus

git-svn-id: https://develop.svn.wordpress.org/trunk@6095 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2007-09-12 17:46:13 +00:00
parent 6eaa87a9a9
commit 41bd579f15
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ function get_attachment_link($id = false) {
else
$parentlink = get_permalink( $object->post_parent );
if (strpos($parentlink, '?') === false)
$link = trim($parentlink, '/') . '/' . $object->post_name . '/';
$link = trailingslashit($parentlink) . $object->post_name . '/';
}
if (! $link ) {