summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-includes/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-inst/wp-includes/functions.php')
-rw-r--r--wp-inst/wp-includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-inst/wp-includes/functions.php b/wp-inst/wp-includes/functions.php
index a5ba06d..8921cb5 100644
--- a/wp-inst/wp-includes/functions.php
+++ b/wp-inst/wp-includes/functions.php
@@ -258,7 +258,7 @@ function url_to_postid($url) {
function maybe_unserialize($original) {
- if ( $gm = @ unserialize($original) )
+ if ( false !== $gm = @ unserialize($original) )
return $gm;
else
return $original;