Changeset 13209 for trunk/wp-includes/post.php
- Timestamp:
- 02/19/2010 01:03:58 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r13199 r13209 4170 4170 4171 4171 // WP_POST_REVISIONS = 0, false 4172 if ( ! constant('WP_POST_REVISIONS'))4172 if ( ! WP_POST_REVISIONS ) 4173 4173 return; 4174 4174 … … 4449 4449 */ 4450 4450 function wp_get_post_revisions( $post_id = 0, $args = null ) { 4451 if ( ! constant('WP_POST_REVISIONS'))4451 if ( ! WP_POST_REVISIONS ) 4452 4452 return array(); 4453 4453 if ( ( !$post = get_post( $post_id ) ) || empty( $post->ID ) )
Note: See TracChangeset
for help on using the changeset viewer.