Make WordPress Core


Ignore:
Timestamp:
11/30/2005 12:25:05 AM (21 years ago)
Author:
ryan
Message:

Unserialize fix. fixes #1988

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r3234 r3239  
    259259
    260260function maybe_unserialize($original) {
    261         if ( $gm = @ unserialize($original) )
     261        if ( false !== $gm = @ unserialize($original) )
    262262                return $gm;
    263263        else
Note: See TracChangeset for help on using the changeset viewer.