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

git-svn-id: http://svn.automattic.com/wordpress/trunk@7437 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-03-21 03:08:22 +00:00
parent 1ec1d3902d
commit ef8ff2324c

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 ) {