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:
parent
6eaa87a9a9
commit
41bd579f15
|
@ -167,7 +167,7 @@ function get_attachment_link($id = false) {
|
||||||
else
|
else
|
||||||
$parentlink = get_permalink( $object->post_parent );
|
$parentlink = get_permalink( $object->post_parent );
|
||||||
if (strpos($parentlink, '?') === false)
|
if (strpos($parentlink, '?') === false)
|
||||||
$link = trim($parentlink, '/') . '/' . $object->post_name . '/';
|
$link = trailingslashit($parentlink) . $object->post_name . '/';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! $link ) {
|
if (! $link ) {
|
||||||
|
|
Loading…
Reference in New Issue