Changeset 50558 for trunk/src/wp-includes/revision.php
- Timestamp:
- 03/21/2021 12:39:25 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/revision.php
r49108 r50558 372 372 } 373 373 374 if ( OBJECT == $output ) {374 if ( OBJECT === $output ) { 375 375 return $revision; 376 } elseif ( ARRAY_A == $output ) {376 } elseif ( ARRAY_A === $output ) { 377 377 $_revision = get_object_vars( $revision ); 378 378 return $_revision; 379 } elseif ( ARRAY_N == $output ) {379 } elseif ( ARRAY_N === $output ) { 380 380 $_revision = array_values( get_object_vars( $revision ) ); 381 381 return $_revision;
Note: See TracChangeset
for help on using the changeset viewer.