Skip to:
Content

bbPress.org

Changeset 6535


Ignore:
Timestamp:
06/12/2017 09:54:05 PM (8 years ago)
Author:
johnjamesjacoby
Message:

Bump trunk to 2.6 Release Candidate 3.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/bbpress.php

    r6510 r6535  
    1818 * Author:      The bbPress Contributors
    1919 * Author URI:  https://bbpress.org
    20  * Version:     2.6-rc-1
     20 * Version:     2.6-rc-3
    2121 * Text Domain: bbpress
    2222 * Domain Path: /languages/
  • trunk/src/bbpress.php

    r6514 r6535  
    1818 * Author:      The bbPress Contributors
    1919 * Author URI:  https://bbpress.org
    20  * Version:     2.6-rc-1
     20 * Version:     2.6-rc-3
    2121 * Text Domain: bbpress
    2222 * Domain Path: /languages/
     
    205205        /** Versions **********************************************************/
    206206
    207         $this->version    = '2.6-rc-6513';
    208         $this->db_version = '261';
     207        $this->version    = '2.6-rc-6535';
     208        $this->db_version = '262';
    209209
    210210        /** Paths *************************************************************/
  • trunk/src/includes/core/update.php

    r6498 r6535  
    329329
    330330            /**
    331              * Upgrade user favorites, subscriptions, and engagements
     331             * Upgrade user favorites and subscriptions
    332332             *
    333333             * @link https://bbpress.trac.wordpress.org/ticket/2959
     334             */
     335            if ( ! bbp_is_large_install() ) {
     336                bbp_admin_upgrade_user_favorites();
     337                bbp_admin_upgrade_user_topic_subscriptions();
     338                bbp_admin_upgrade_user_forum_subscriptions();
     339            }
     340        }
     341
     342        if ( $raw_db_version < 262 ) {
     343
     344            /**
     345             * Upgrade user engagements
     346             *
    334347             * @link https://bbpress.trac.wordpress.org/ticket/3068
    335348             */
    336349            if ( ! bbp_is_large_install() ) {
    337350                bbp_admin_upgrade_user_engagements();
    338                 bbp_admin_upgrade_user_favorites();
    339                 bbp_admin_upgrade_user_topic_subscriptions();
    340                 bbp_admin_upgrade_user_forum_subscriptions();
    341351            }
    342352        }
  • trunk/src/readme.txt

    r6498 r6535  
    44Requires at least: 4.7
    55Tested up to: 4.8
    6 Stable tag: 2.5.11
     6Stable tag: 2.5.12
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.