Skip to:
Content

bbPress.org

Ticket #1661: 1661.diff

File 1661.diff, 794 bytes (added by Mamaduka, 12 years ago)

Add missing textdomain, also use prinf()

  • bbp-core-widgets.php

     
    564564                                        <?php while ( bbp_topics() ) : bbp_the_topic(); ?>
    565565
    566566                                                <li>
    567                                                         <a class="bbp-forum-title" href="<?php bbp_topic_permalink(); ?>" title="<?php bbp_topic_title(); ?>"><?php bbp_topic_title(); ?></a><?php if ( $show_date == 'on' ) _e( ', ' . bbp_get_topic_last_active_time() . ' ago' ); ?>
     567                                                        <a class="bbp-forum-title" href="<?php bbp_topic_permalink(); ?>" title="<?php bbp_topic_title(); ?>"><?php bbp_topic_title(); ?></a><?php if ( $show_date == 'on' ) printf( __( ', %s ago', 'bbpress' ), bbp_get_topic_last_active_time() ); ?>
    568568                                                </li>
    569569
    570570                                        <?php endwhile; ?>