Changeset 6535
- Timestamp:
- 06/12/2017 09:54:05 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bbpress.php
r6510 r6535 18 18 * Author: The bbPress Contributors 19 19 * Author URI: https://bbpress.org 20 * Version: 2.6-rc- 120 * Version: 2.6-rc-3 21 21 * Text Domain: bbpress 22 22 * Domain Path: /languages/ -
trunk/src/bbpress.php
r6514 r6535 18 18 * Author: The bbPress Contributors 19 19 * Author URI: https://bbpress.org 20 * Version: 2.6-rc- 120 * Version: 2.6-rc-3 21 21 * Text Domain: bbpress 22 22 * Domain Path: /languages/ … … 205 205 /** Versions **********************************************************/ 206 206 207 $this->version = '2.6-rc-65 13';208 $this->db_version = '26 1';207 $this->version = '2.6-rc-6535'; 208 $this->db_version = '262'; 209 209 210 210 /** Paths *************************************************************/ -
trunk/src/includes/core/update.php
r6498 r6535 329 329 330 330 /** 331 * Upgrade user favorites , subscriptions, and engagements331 * Upgrade user favorites and subscriptions 332 332 * 333 333 * @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 * 334 347 * @link https://bbpress.trac.wordpress.org/ticket/3068 335 348 */ 336 349 if ( ! bbp_is_large_install() ) { 337 350 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();341 351 } 342 352 } -
trunk/src/readme.txt
r6498 r6535 4 4 Requires at least: 4.7 5 5 Tested up to: 4.8 6 Stable tag: 2.5.1 16 Stable tag: 2.5.12 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.