Skip to content

Commit 1b949de

Browse files
Database: Remove the check for sitecategories table on Database Repair screen.
The table is no longer created by core as of WordPress 3.0, and support for global terms was removed in WordPress 6.1, so `$wpdb->sitecategories` is unset by default. This commit resolves a "passing null to non-nullable" deprecation notice on PHP 8.1: {{{ Deprecated: addcslashes(): Passing null to parameter #1 ($string) of type string is deprecated in wp-includes/class-wpdb.php on line 1804 }}} The `tables_to_repair` filter is available for plugins to readd the table or include any additional tables to repair. Follow-up to [14854], [14880], [54240]. Props ipajen, chiragrathod103, SergeyBiryukov. Fixes #57762. git-svn-id: https://develop.svn.wordpress.org/trunk@55421 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 5fd8bed commit 1b949de

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/wp-admin/maint/repair.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,6 @@
9797

9898
$tables = $wpdb->tables();
9999

100-
// Sitecategories may not exist if global terms are disabled.
101-
$query = $wpdb->prepare( 'SHOW TABLES LIKE %s', $wpdb->esc_like( $wpdb->sitecategories ) );
102-
if ( is_multisite() && ! $wpdb->get_var( $query ) ) {
103-
unset( $tables['sitecategories'] );
104-
}
105-
106100
/**
107101
* Filters additional database tables to repair.
108102
*

0 commit comments

Comments
 (0)