Changeset 29339 for trunk/src/wp-includes/meta.php
- Timestamp:
- 08/01/2014 05:09:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/meta.php
r28712 r29339 138 138 return false; 139 139 140 if ( !$object_id = absint($object_id) ) 141 return false; 140 if ( ! is_numeric( $object_id ) || ! $object_id = absint( $object_id ) ) { 141 return false; 142 } 142 143 143 144 if ( ! $table = _get_meta_table($meta_type) )
Note: See TracChangeset
for help on using the changeset viewer.