diff --git src/wp-includes/meta.php src/wp-includes/meta.php
index cfb9d95..ace39ff 100644
|
|
|
34 | 34 | return false; |
35 | 35 | } |
36 | 36 | |
37 | | $object_id = absint( $object_id ); |
| 37 | $object_id = intval( $object_id ); |
38 | 38 | if ( ! $object_id ) { |
39 | 39 | return false; |
40 | 40 | } |
… |
… |
|
147 | 147 | return false; |
148 | 148 | } |
149 | 149 | |
150 | | $object_id = absint( $object_id ); |
| 150 | $object_id = intval( $object_id ); |
151 | 151 | if ( ! $object_id ) { |
152 | 152 | return false; |
153 | 153 | } |
… |
… |
|
311 | 311 | return false; |
312 | 312 | } |
313 | 313 | |
314 | | $object_id = absint( $object_id ); |
| 314 | $object_id = intval( $object_id ); |
315 | 315 | if ( ! $object_id && ! $delete_all ) { |
316 | 316 | return false; |
317 | 317 | } |
… |
… |
|
463 | 463 | return false; |
464 | 464 | } |
465 | 465 | |
466 | | $object_id = absint( $object_id ); |
| 466 | $object_id = intval( $object_id ); |
467 | 467 | if ( ! $object_id ) { |
468 | 468 | return false; |
469 | 469 | } |
… |
… |
|
530 | 530 | return false; |
531 | 531 | } |
532 | 532 | |
533 | | $object_id = absint( $object_id ); |
| 533 | $object_id = intval( $object_id ); |
534 | 534 | if ( ! $object_id ) { |
535 | 535 | return false; |
536 | 536 | } |