We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cca6c30 commit 2f88a28Copy full SHA for 2f88a28
2 files changed
src/ViewRenderer.php
@@ -416,7 +416,7 @@ public static function renderCachesPage(): void {
416
$view['processedSiteFileCount'] = 0;
417
}
418
419
- $view['DetectedFilesTotal'] = DetectedFiles::getTotal();
+ $view['detectedFilesTotal'] = DetectedFiles::getTotal();
420
$view['crawledFilesTotal'] = CrawledFiles::getTotal();
421
$view['deployCacheTotalPaths'] = DeployCache::getTotal();
422
$view['uploads_path'] = SiteInfo::getPath( 'uploads' );
views/caches-page.php
@@ -17,7 +17,7 @@
17
/**
18
* @var int $static_deploy_detected_files_total
19
*/
20
-$static_deploy_detected_files_total = $view['DetectedFilesTotal'];
+$static_deploy_detected_files_total = $view['detectedFilesTotal'];
21
22
23
* @var int $static_deploy_crawled_files_total
0 commit comments