Make WordPress Core

Ticket #33206: 33206.diff

File 33206.diff, 450 bytes (added by obenland, 9 years ago)
  • src/wp-includes/wp-db.php

     
    10161016                                $tables['usermeta'] = CUSTOM_USER_META_TABLE;
    10171017                }
    10181018
     1019                // Ignore sitecategories table if global terms are not enabled.
     1020                if ( ! global_terms_enabled() ) {
     1021                        unset( $tables['sitecategories'] );
     1022                }
     1023
    10191024                return $tables;
    10201025        }
    10211026