diff --git a/bbPress/admin/converters/bbPress1.php b/bbPress/admin/converters/bbPress1.php
index 90ada68..00c3b7f 100644
a
|
b
|
class bbPress1 extends BBP_Converter_Base { |
216 | 216 | 'callback_method' => 'callback_topic_status' |
217 | 217 | ); |
218 | 218 | |
| 219 | // Sticky status (Sticky or Global Sticky) |
| 220 | $this->field_map[] = array( |
| 221 | 'from_tablename' => 'topics', |
| 222 | 'from_fieldname' => 'topic_sticky', |
| 223 | 'to_type' => 'topic', |
| 224 | 'to_fieldname' => 'post_status', |
| 225 | 'callback_method' => 'callback_sticky_status' |
| 226 | ); |
| 227 | |
219 | 228 | // Author ip. |
220 | 229 | $this->field_map[] = array( |
221 | 230 | 'from_tablename' => 'posts', |