From 202148a771cc6d697a1f4e2cad354f8dba10de86 Mon Sep 17 00:00:00 2001 From: Tetrakern <26898880+Tetrakern@users.noreply.github.com> Date: Fri, 8 Sep 2023 12:35:44 +0200 Subject: [PATCH] Add title tooltip to ePUBs downloads column --- includes/functions/settings/_settings_page_epubs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions/settings/_settings_page_epubs.php b/includes/functions/settings/_settings_page_epubs.php index 91f84dab..f92ea05b 100644 --- a/includes/functions/settings/_settings_page_epubs.php +++ b/includes/functions/settings/_settings_page_epubs.php @@ -139,7 +139,7 @@ class Fictioneer_Epubs_Table extends WP_List_Table { echo is_numeric( $words ) ? number_format_i18n( $words ) : $words; break; case 'downloads': - echo "{$downloads_version} ({$downloads_total})"; + echo "{$downloads_version} ({$downloads_total})"; break; case 'size': echo esc_html( size_format( filesize( $item ) ) );