Changeset 50558 for trunk/src/wp-includes/bookmark.php
- Timestamp:
- 03/21/2021 12:39:25 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/bookmark.php
r48591 r50558 54 54 $_bookmark = sanitize_bookmark( $_bookmark, $filter ); 55 55 56 if ( OBJECT == $output ) {56 if ( OBJECT === $output ) { 57 57 return $_bookmark; 58 } elseif ( ARRAY_A == $output ) {58 } elseif ( ARRAY_A === $output ) { 59 59 return get_object_vars( $_bookmark ); 60 } elseif ( ARRAY_N == $output ) {60 } elseif ( ARRAY_N === $output ) { 61 61 return array_values( get_object_vars( $_bookmark ) ); 62 62 } else {
Note: See TracChangeset
for help on using the changeset viewer.