Changeset 6142
- Timestamp:
- 09/20/07 18:25:14 (1 year ago)
- Files:
-
- trunk/wp-includes/link-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
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
