From 89c57124dad46bbf925cd510dba99d2d4f6930b7 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 11 Sep 2013 03:23:08 +0000 Subject: [PATCH] Improve clarity and speed of [25320]. Built from https://develop.svn.wordpress.org/trunk@25338 git-svn-id: http://core.svn.wordpress.org/trunk@25300 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 41428ce430..2cab41acd7 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -262,8 +262,15 @@ function is_serialized( $data, $strict = true ) { if ( ';' !== $lastc && '}' !== $lastc ) return false; } else { - // ensures ; or } exists but is not in the first X chars - if ( strpos( $data, ';' ) < 3 && strpos( $data, '}' ) < 4 ) + $semicolon = strpos( $data, ';' ); + $brace = strpos( $data, '}' ); + // Either ; or } must exist. + if ( false === $semicolon && false === $brace ) + return false; + // But neither must be in the first X characters. + if ( false !== $semicolon && $semicolon < 3 ) + return false; + if ( false !== $brace && $brace < 4 ) return false; } $token = $data[0];