Changeset 6416
- Timestamp:
- 05/19/2017 09:18:40 AM (9 years ago)
- File:
-
- 1 edited
-
branches/2.5/includes/replies/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.5/includes/replies/functions.php
r6021 r6416 391 391 392 392 // Get pre_trashed_replies for topic 393 $pre_trashed_replies = get_post_meta( $topic_id, '_bbp_pre_trashed_replies', true );393 $pre_trashed_replies = (array) get_post_meta( $topic_id, '_bbp_pre_trashed_replies', true ); 394 394 395 395 // Add this reply to the end of the existing replies … … 410 410 411 411 // Get pre_spammed_replies for topic 412 $pre_spammed_replies = get_post_meta( $topic_id, '_bbp_pre_spammed_replies', true );412 $pre_spammed_replies = (array) get_post_meta( $topic_id, '_bbp_pre_spammed_replies', true ); 413 413 414 414 // Add this reply to the end of the existing replies
Note: See TracChangeset
for help on using the changeset viewer.