Replace the last usage of ctype_digit with is_numeric. Fixes #6534 for trunk props mtekk.
git-svn-id: http://svn.automattic.com/wordpress/trunk@7588 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
29a551d786
commit
3eee635513
|
@ -179,7 +179,7 @@ function get_attachment_link($id = false) {
|
||||||
$parentlink = _get_page_link( $object->post_parent ); // Ignores page_on_front
|
$parentlink = _get_page_link( $object->post_parent ); // Ignores page_on_front
|
||||||
else
|
else
|
||||||
$parentlink = get_permalink( $object->post_parent );
|
$parentlink = get_permalink( $object->post_parent );
|
||||||
if ( ctype_digit($object->post_name) || false !== strpos(get_option('permalink_structure'), '%category%') )
|
if ( is_numeric($object->post_name) || false !== strpos(get_option('permalink_structure'), '%category%') )
|
||||||
$name = 'attachment/' . $object->post_name; // <permalink>/<int>/ is paged so we use the explicit attachment marker
|
$name = 'attachment/' . $object->post_name; // <permalink>/<int>/ is paged so we use the explicit attachment marker
|
||||||
else
|
else
|
||||||
$name = $object->post_name;
|
$name = $object->post_name;
|
||||||
|
|
Loading…
Reference in New Issue