Make WordPress Core

Ticket #26887: tableprefix.2.diff

File tableprefix.2.diff, 568 bytes (added by DavidAnderson, 11 years ago)

Proposed patch

  • wp-includes/wp-db.php

     
    171171        var $prefix = '';
    172172
    173173        /**
     174         * WordPress base table prefix
     175         *
     176         * @since 3.0
     177         * @access public
     178         * @var string
     179         */
     180         var $base_prefix;
     181
     182        /**
    174183         * Whether the database queries are ready to start executing.
    175184         *
    176185         * @since 2.3.2
     
    664673
    665674                $old_prefix = is_multisite() ? '' : $prefix;
    666675
    667                 if ( isset( $this->base_prefix ) )
     676                if ( !empty( $this->base_prefix ) )
    668677                        $old_prefix = $this->base_prefix;
    669678
    670679                $this->base_prefix = $prefix;