Changeset 47454 for trunk/src/wp-includes/functions.php
- Timestamp:
- 03/13/2020 09:12:01 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r47453 r47454 617 617 function maybe_unserialize( $data ) { 618 618 if ( is_serialized( $data ) ) { // Don't attempt to unserialize data that wasn't serialized going in. 619 return @unserialize( $data);619 return @unserialize( trim( $data ) ); 620 620 } 621 621
Note: See TracChangeset
for help on using the changeset viewer.