Changeset 21651 for trunk/wp-includes/class-wp-atom-server.php
- Timestamp:
- 08/28/2012 07:08:28 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-atom-server.php
r20715 r21651 914 914 } 915 915 916 $entry = wp_get_single_post($postID,ARRAY_A);916 $entry = get_post($postID,ARRAY_A); 917 917 918 918 if (!isset($entry) || !isset($entry['ID'])) … … 1411 1411 case $this->ENTRY_PATH: 1412 1412 global $post; 1413 $post = wp_get_single_post($this->params[1]);1413 $post = get_post($this->params[1]); 1414 1414 $wp_last_modified = get_post_modified_time('D, d M Y H:i:s', true); 1415 1415 $post = null;
Note: See TracChangeset
for help on using the changeset viewer.