Make WordPress Core

Changeset 47654

Timestamp:
04/29/2020 04:42:56 PM (4 years ago)
Author:
whyisjake
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.5/src/wp-includes/cache.php

    r36709 r47654  
    692692        echo '<ul>';
    693693        foreach ($this->cache as $group => $cache) {
    694             echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>';
     694            echo . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>';
    695695        }
    696696        echo '</ul>';
Note: See TracChangeset for help on using the changeset viewer.