Changeset 6142
- Timestamp:
- 09/20/2007 06:25:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/link-template.php
r6095 r6142 359 359 global $post, $wpdb; 360 360 361 if( !is_single() || is_attachment() )361 if( empty($post) || !is_single() || is_attachment() ) 362 362 return null; 363 363 … … 392 392 global $post, $wpdb; 393 393 394 if( !is_single() || is_attachment() )394 if( empty($post) || !is_single() || is_attachment() ) 395 395 return null; 396 396
Note: See TracChangeset
for help on using the changeset viewer.