Skip to:
Content

bbPress.org

Ticket #1989: revision-log.patch

File revision-log.patch, 1.4 KB (added by MZAWeb, 12 years ago)
  • includes/replies/template-tags.php

     
    632632         * @uses bbp_get_time_since() To get the time in since format
    633633         * @uses apply_filters() Calls 'bbp_get_reply_revision_log' with the
    634634         *                        log and reply id
     635         * @uses apply_filters() Calls 'bbp_reply_revision_log_limit' with the
     636         *                        amount of revisions to show
    635637         * @return string Revision log of the reply
    636638         */
    637639        function bbp_get_reply_revision_log( $reply_id = 0 ) {
     
    658660
    659661                $r = "\n\n" . '<ul id="bbp-reply-revision-log-' . $reply_id . '" class="bbp-reply-revision-log">' . "\n\n";
    660662
     663                $limit = (int) apply_filters( 'bbp_reply_revision_log_limit', 1 );
     664
     665                if ( $limit > 0 )
     666                        $revisions = array_slice( (array) $revisions, 0, $limit );
     667
    661668                // Loop through revisions
    662                 foreach ( (array) $revisions as $revision ) {
    663 
     669                foreach ( $revisions as $revision ) {
    664670                        if ( empty( $revision_log[$revision->ID] ) ) {
    665671                                $author_id = $revision->post_author;
    666672                                $reason    = '';
     
    679685                                $r .= "\t\t" . sprintf( __( 'This reply was modified %1$s by %2$s.', 'bbpress' ), $since, $author ) . "\n";
    680686                        }
    681687                        $r .= "\t" . '</li>' . "\n";
    682 
    683688                }
    684689
    685690                $r .= "\n" . '</ul>' . "\n\n";