Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/21/2014 04:08:32 PM (12 years ago)
Author:
johnjamesjacoby
Message:

Signups: Introduce functions for upgrading gthe lobal wp_signups table if an old version exists. This happens primarily on singlesite installations where third party plugins may have previously created the sign-ups table without keeping it updated.

  • Bumps the DB version number to 8300.
  • Moves functions for table creation and upgrade into the admin schema file.
  • Moves sign-ups table creation out of activation process, and into the database upgrade process.
  • No not rely on dbDelta() for these specific database upgrades (inspired by [WP25179])

See #5563, #WP27855. (2.0 branch)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/bp-loader.php

    r8278 r8301  
    304304        /** Versions **************************************************/
    305305
    306         $this->version    = '2.0';
    307         $this->db_version = 7892;
     306        $this->version    = '2.0.1';
     307        $this->db_version = 8300;
    308308
    309309        /** Loading ***************************************************/
Note: See TracChangeset for help on using the changeset viewer.