Changeset 6247
- Timestamp:
- 10/14/2007 01:08:07 AM (18 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/cache.php
r5870 r6247 268 268 $group = 'default'; 269 269 270 if (NULL == $data)270 if (NULL === $data) 271 271 $data = ''; 272 272 -
trunk/wp-includes/post.php
r6242 r6247 1666 1666 return false; 1667 1667 1668 if ( !is_array($post_ids) ) { 1669 $post_ids = preg_replace('|[^0-9,]|', '', $post_ids); 1670 $post_ids = explode(',', $post_ids); 1671 } 1672 1673 $post_ids = array_map('intval', $post_ids); 1674 1668 1675 $ids = array(); 1669 1676 foreach ( (array) $post_ids as $id ) {
Note: See TracChangeset
for help on using the changeset viewer.