- Timestamp:
- 07/05/2018 06:00:25 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/classes/class-bbp-converter-base.php
r6785 r6832 44 44 * @var array() Map of topic to forum. It is for optimization. 45 45 */ 46 pr ivate$map_topicid_to_forumid = array();46 protected $map_topicid_to_forumid = array(); 47 47 48 48 /** 49 49 * @var array() Map of from old forum ids to new forum ids. It is for optimization. 50 50 */ 51 pr ivate$map_forumid = array();51 protected $map_forumid = array(); 52 52 53 53 /** 54 54 * @var array() Map of from old topic ids to new topic ids. It is for optimization. 55 55 */ 56 pr ivate$map_topicid = array();56 protected $map_topicid = array(); 57 57 58 58 /** 59 59 * @var array() Map of from old reply_to ids to new reply_to ids. It is for optimization. 60 60 */ 61 pr ivate$map_reply_to = array();61 protected $map_reply_to = array(); 62 62 63 63 /** 64 64 * @var array() Map of from old user ids to new user ids. It is for optimization. 65 65 */ 66 pr ivate$map_userid = array();66 protected $map_userid = array(); 67 67 68 68 /** … … 514 514 515 515 if ( is_numeric( $post_id ) ) { 516 517 516 foreach ( $insert_postmeta as $key => $value ) { 518 519 517 add_user_meta( $post_id, $key, $value, true ); 520 518 … … 613 611 614 612 if ( is_numeric( $post_id ) ) { 615 616 613 foreach ( $insert_postmeta as $key => $value ) { 617 618 614 add_post_meta( $post_id, $key, $value, true ); 619 615 … … 842 838 /** 843 839 * This method deletes data from the wp database. 844 */ 845 public function clean( $start = 1 ) { 840 * 841 * @since 2.6.0 bbPress (r6456) 842 */ 843 public function clean() { 846 844 847 845 // Defaults
Note: See TracChangeset
for help on using the changeset viewer.