Skip to content

Commit 2f88a28

Browse files
committed
Use consistent case for detectedFilesTotal
Match the casing of other keys.
1 parent cca6c30 commit 2f88a28

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/ViewRenderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ public static function renderCachesPage(): void {
416416
$view['processedSiteFileCount'] = 0;
417417
}
418418

419-
$view['DetectedFilesTotal'] = DetectedFiles::getTotal();
419+
$view['detectedFilesTotal'] = DetectedFiles::getTotal();
420420
$view['crawledFilesTotal'] = CrawledFiles::getTotal();
421421
$view['deployCacheTotalPaths'] = DeployCache::getTotal();
422422
$view['uploads_path'] = SiteInfo::getPath( 'uploads' );

views/caches-page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* @var int $static_deploy_detected_files_total
1919
*/
20-
$static_deploy_detected_files_total = $view['DetectedFilesTotal'];
20+
$static_deploy_detected_files_total = $view['detectedFilesTotal'];
2121

2222
/**
2323
* @var int $static_deploy_crawled_files_total

0 commit comments

Comments
 (0)