Changeset 7056
- Timestamp:
- 01/15/2020 10:13:55 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Example.php
r6670 r7056 89 89 ); 90 90 91 // Forum slug (Clean name to avoid conf ilcts)91 // Forum slug (Clean name to avoid conflicts) 92 92 $this->field_map[] = array( 93 93 'from_tablename' => 'forums_table', -
trunk/src/includes/admin/converters/Invision.php
r7050 r7056 94 94 ); 95 95 96 // Forum slug (Clean name to avoid conf ilcts)96 // Forum slug (Clean name to avoid conflicts) 97 97 $this->field_map[] = array( 98 98 'from_tablename' => 'forums', -
trunk/src/includes/admin/converters/Mingle.php
r7006 r7056 62 62 ); 63 63 64 // Forum slug (Clean name to avoid conf ilcts)64 // Forum slug (Clean name to avoid conflicts) 65 65 $this->field_map[] = array( 66 66 'from_tablename' => 'forum_forums', -
trunk/src/includes/admin/converters/Vanilla.php
r6670 r7056 96 96 ); 97 97 98 // Forum slug (Clean name to avoid conf ilcts)98 // Forum slug (Clean name to avoid conflicts) 99 99 $this->field_map[] = array( 100 100 'from_tablename' => 'Category', -
trunk/src/includes/admin/converters/XenForo.php
r7006 r7056 110 110 ); 111 111 112 // Forum slug (Clean name to avoid conf ilcts)112 // Forum slug (Clean name to avoid conflicts) 113 113 // 'node_name' only has slug for explictly named forums 114 114 $this->field_map[] = array( -
trunk/src/includes/admin/converters/bbPress1.php
r6670 r7056 94 94 ); 95 95 96 // Forum slug (Clean name to avoid conf ilcts)96 // Forum slug (Clean name to avoid conflicts) 97 97 $this->field_map[] = array( 98 98 'from_tablename' => 'forums', -
trunk/src/includes/admin/converters/vBulletin.php
r6767 r7056 94 94 ); 95 95 96 // Forum slug (Clean name to avoid conf ilcts)96 // Forum slug (Clean name to avoid conflicts) 97 97 $this->field_map[] = array( 98 98 'from_tablename' => 'forum', -
trunk/src/includes/admin/converters/vBulletin3.php
r7006 r7056 94 94 ); 95 95 96 // Forum slug (Clean name to avoid conf ilcts)96 // Forum slug (Clean name to avoid conflicts) 97 97 $this->field_map[] = array( 98 98 'from_tablename' => 'forum', -
trunk/src/includes/users/capabilities.php
r7029 r7056 2 2 3 3 /** 4 * bbPress User Capabilit es4 * bbPress User Capabilities 5 5 * 6 6 * Used to map user capabilities to WordPress's existing capabilities. -
trunk/src/includes/users/functions.php
r7032 r7056 264 264 $edit_user = edit_user( $user_id ); 265 265 266 // Error(s) edit ng the user, so copy them into the global266 // Error(s) editing the user, so copy them into the global. 267 267 if ( is_wp_error( $edit_user ) ) { 268 268 bbpress()->errors = $edit_user; -
trunk/src/templates/default/js/reply.js
r7010 r7056 57 57 58 58 /** 59 * When cancel ling a Reply.59 * When canceling a Reply. 60 60 * 61 61 * @since 2.6.2
Note: See TracChangeset
for help on using the changeset viewer.