Ticket #2571: tools.php.patch
File tools.php.patch, 814 bytes (added by , 10 years ago) |
---|
-
wp-content/plugins/bbpress-org/tools.php
20 20 21 21 // Refresh topic data 22 22 if ( bbp_is_single_topic() ) { 23 bbp_update_topic_voice_count();24 bbp_update_topic_last_reply_id();25 bbp_update_topic_last_active_id();26 bbp_update_topic_last_active_time();27 23 24 // Get the topic ID 25 $topic_id = bbp_get_topic_id(); 26 27 bbp_update_topic_voice_count( $topic_id ); 28 bbp_update_topic_last_reply_id( $topic_id ); 29 bbp_update_topic_last_active_id( $topic_id ); 30 bbp_update_topic_last_active_time( $topic_id ); 31 28 32 // Redirect without _GET 29 33 wp_safe_redirect( bbp_get_topic_permalink() ); 30 34 die;