Changeset 2945
- Timestamp:
- 02/28/2011 10:19:39 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-update.php
r2943 r2945 13 13 14 14 // Get the current bbPress DB version from the DB 15 $db_version = (int)get_option( '_bbp_db_version' );15 $db_version = get_option( '_bbp_db_version' ); 16 16 17 17 // Update the meta key names 18 if ( 104 < $db_version ) {18 if ( 104 < (int) $db_version ) { 19 19 20 20 // _bbp_visibility … … 81 81 82 82 // Remove the 'bbp_' prefix from post types in posts table 83 if ( 105 < $db_version ) {83 if ( 105 < (int) $db_version ) { 84 84 85 85 // Update the post type slugs … … 95 95 96 96 // Remove the 'bbp_' prefix from post types in posts table 97 if ( 106 < $db_version ) {97 if ( 106 < (int) $db_version ) { 98 98 99 99 // Update the topic tag slug
Note: See TracChangeset
for help on using the changeset viewer.