From df717e8294a75601034b7586519a7a201a3fccee Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 8 May 2015 16:26:13 +0000 Subject: [PATCH] Add a comment to maybe_serialize(). git-svn-id: https://develop.svn.wordpress.org/trunk@32458 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 51fc282298..0c7f102e51 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -381,6 +381,7 @@ function maybe_serialize( $data ) { // Double serialization is required for backward compatibility. // See https://core.trac.wordpress.org/ticket/12930 + // Also the world will end. See WP 3.6.1. if ( is_serialized( $data, false ) ) return serialize( $data );