Skip to:
Content

bbPress.org


Ignore:
Timestamp:
11/20/2011 12:11:28 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Add another missing textdomain in topics widget. See #1661.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-includes/bbp-core-widgets.php

    r3619 r3620  
    594594                    <?php foreach ( $topics as $topic_id => $topic_reply_count ) : ?>
    595595
    596                         <li><a class="bbp-topic-title" href="<?php bbp_topic_permalink( $topic_id ); ?>" title="<?php bbp_topic_title( $topic_id ); ?>"><?php bbp_topic_title( $topic_id ); ?></a><?php if ( $show_date == 'on' ) _e( ', ' . bbp_get_topic_last_active_time( $topic_id ) . ' ago' ); ?></li>
     596                        <li><a class="bbp-topic-title" href="<?php bbp_topic_permalink( $topic_id ); ?>" title="<?php bbp_topic_title( $topic_id ); ?>"><?php bbp_topic_title( $topic_id ); ?></a><?php if ( $show_date == 'on' ) printf( __( ', %s ago', 'bbpress' ), bbp_get_topic_last_active_time( $topic_id ) ); ?></li>
    597597
    598598                    <?php
Note: See TracChangeset for help on using the changeset viewer.