Skip to content

Commit

Permalink
cast to int
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Scherer committed Apr 15, 2015
1 parent 1fd0eec commit aff0576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions View/Elements/url_cache_panel.ctp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h2>URL Cache</h2>

<h3>Global</h3>
URLs already in Cache: <?php echo Configure::read('UrlCacheDebug.count'); ?>
URLs already in Cache: <?php echo (int)Configure::read('UrlCacheDebug.count'); ?>
<br>
Hits (reused) this page load: <b><?php echo (int)Configure::read('UrlCacheDebug.used'); ?></b>
<br>
Expand All @@ -10,7 +10,7 @@ Misses this page load: <b><?php echo (int)Configure::read('UrlCacheDebug.missedC
Newly added this page load: <b><?php echo (int)Configure::read('UrlCacheDebug.added'); ?></b>

<h3>Per Page</h3>
URLs already in Cache for this page: <?php echo Configure::read('UrlCacheDebug.countPage'); ?>
URLs already in Cache for this page: <?php echo (int)Configure::read('UrlCacheDebug.countPage'); ?>
<br>
Hits (reused) this page load: <b><?php echo (int)Configure::read('UrlCacheDebug.usedPage'); ?></b>
<br>
Expand Down

0 comments on commit aff0576

Please sign in to comment.