Skip to content

Commit

Permalink
Merge pull request #828 from equalizedigital/william/8102856294/URLs-…
Browse files Browse the repository at this point in the history
…with-100-score-always-zero

Fix: URLs with 100% score will always be 0
  • Loading branch information
pattonwebz authored Dec 6, 2024
2 parents e13c021 + 4d8b49d commit f3aa624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/class-welcome-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public static function render_summary() {
<div class="edac-welcome-grid-c11 edac-welcome-grid-item edac-background-light">
<div class="edac-inner-row">
<div class="edac-stat-number">
<?php echo esc_html( $summary['posts_without_issues_formatted'] ); ?>
<?php echo esc_html( $summary['posts_without_issues'] ?? 0 ); ?>
</div>
</div>
<div class="edac-inner-row">
Expand Down

0 comments on commit f3aa624

Please sign in to comment.