Changeset 7024 for trunk/bp-core/bp-core-cache.php
- Timestamp:
- 05/08/2013 08:27:22 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-cache.php
r6752 r7024 93 93 } 94 94 95 if ( !is_array( $object_ids ) ) { 96 $object_ids = preg_replace( '|[^0-9,]|', '', $object_ids ); 97 $object_ids = explode( ',', $object_ids ); 98 } 99 100 $object_ids = array_map( 'intval', $object_ids ); 95 $object_ids = wp_parse_id_list( $object_ids ); 101 96 102 97 $cache = array();
Note: See TracChangeset
for help on using the changeset viewer.