Changeset 6195 for trunk/src/includes/admin/converter.php
- Timestamp:
- 12/28/2016 12:10:08 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/admin/converter.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converter.php
r6191 r6195 1641 1641 } 1642 1642 1643 if ( ! is_null( $row ) ) {1643 if ( ! is_null( $row ) ) { 1644 1644 $this->map_forumid[ $field ] = $row->value_id; 1645 1645 } else { … … 1664 1664 } 1665 1665 1666 if ( ! is_null( $row ) ) {1666 if ( ! is_null( $row ) ) { 1667 1667 $this->map_topicid[ $field ] = $row->value_id; 1668 1668 } else { … … 1689 1689 } 1690 1690 1691 if ( ! is_null( $row ) ) {1691 if ( ! is_null( $row ) ) { 1692 1692 $this->map_reply_to[ $field ] = $row->value_id; 1693 1693 } else { … … 1712 1712 } 1713 1713 1714 if ( ! is_null( $row ) ) {1714 if ( ! is_null( $row ) ) { 1715 1715 $this->map_userid[ $field ] = $row->value_id; 1716 1716 } else { … … 1757 1757 $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT post_parent FROM {$this->wpdb->posts} WHERE ID = %d LIMIT 1", $topicid ) ); 1758 1758 1759 if ( ! is_null( $row ) ) {1759 if ( ! is_null( $row ) ) { 1760 1760 $this->map_topicid_to_forumid[ $topicid ] = $row->post_parent; 1761 1761 } else {
Note: See TracChangeset
for help on using the changeset viewer.