Cache API: Ensure proper escaping around the stats method in the cache API.
Brings the changes in [47637] to the 4.5 branch. Props: nickdaugherty, batmoo, whyisjake, westi. Built from https://develop.svn.wordpress.org/branches/4.5@47654 git-svn-id: http://core.svn.wordpress.org/branches/4.5@47431 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fa2982ec5c
commit
ef104bfdae
|
@ -691,7 +691,7 @@ class WP_Object_Cache {
|
|||
echo "</p>";
|
||||
echo '<ul>';
|
||||
foreach ($this->cache as $group => $cache) {
|
||||
echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>';
|
||||
echo '<li><strong>Group:</strong> ' . esc_html( $group ) . ' - ( ' . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>';
|
||||
}
|
||||
echo '</ul>';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue