use explicit attachment permalink marker for int names. Props andy. fixes #6280

git-svn-id: https://develop.svn.wordpress.org/trunk@7437 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-03-21 03:08:22 +00:00
parent 4ad615a813
commit f99aa53f68

View File

@ -179,8 +179,12 @@ function get_attachment_link($id = false) {
$parentlink = _get_page_link( $object->post_parent ); // Ignores page_on_front
else
$parentlink = get_permalink( $object->post_parent );
if ( ctype_digit($object->post_name) )
$name = 'attachment/' . $object->post_name; // <permalink>/<int>/ is paged so we use the explicit attachment marker
else
$name = $object->post_name;
if (strpos($parentlink, '?') === false)
$link = trailingslashit($parentlink) . $object->post_name . '/';
$link = trailingslashit($parentlink) . $name . '/';
}
if (! $link ) {