esc_html in WP_Object_Cache::stats(). fixes #15003.

git-svn-id: http://svn.automattic.com/wordpress/trunk@15767 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-10-09 11:38:12 +00:00
parent e157f923ed
commit 7bb63ebe44

View File

@ -457,7 +457,7 @@ class WP_Object_Cache {
echo "<strong>Group:</strong> $group<br />";
echo "<strong>Cache:</strong>";
echo "<pre>";
print_r($cache);
echo esc_html( print_r( $cache, true ) );
echo "</pre>";
}
}