From cce7b5126bbbf3abb3a08e0050b712dfd382d70f Mon Sep 17 00:00:00 2001 From: matt Date: Fri, 15 Dec 2023 12:17:17 -0600 Subject: [PATCH] Bugfix: handle removed _accessibility_checker_logs table. --- includes/system-info.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/system-info.php b/includes/system-info.php index 9f6a4270..84222835 100644 --- a/includes/system-info.php +++ b/includes/system-info.php @@ -170,7 +170,6 @@ function edac_tools_sysinfo_get() { } $return .= 'Ignore Permissions: ' . ( get_option( 'edacp_ignore_user_roles' ) ? implode( ', ', get_option( 'edacp_ignore_user_roles' ) ) . "\n" : "None\n" ); $return .= 'Ignores DB Table Count: ' . edac_database_table_count( 'accessibility_checker_global_ignores' ) . "\n"; - $return .= 'Logs DB Table Count: ' . edac_database_table_count( 'accessibility_checker_logs' ) . "\n"; } $return = apply_filters( 'edac_sysinfo_after_edac_config', $return );