Changeset 4678 for trunk/bp-groups/bp-groups-widgets.php
- Timestamp:
- 07/18/2011 07:01:49 AM (15 years ago)
- File:
-
- 1 edited
-
trunk/bp-groups/bp-groups-widgets.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups/bp-groups-widgets.php
r4648 r4678 65 65 <?php 66 66 if ( 'newest' == $instance['group_default'] ) 67 printf( __( 'created %s ago', 'buddypress' ), bp_get_group_date_created() );67 printf( __( 'created %s', 'buddypress' ), bp_get_group_date_created() ); 68 68 if ( 'active' == $instance['group_default'] ) 69 printf( __( 'active %s ago', 'buddypress' ), bp_get_group_last_active() );69 printf( __( 'active %s', 'buddypress' ), bp_get_group_last_active() ); 70 70 else if ( 'popular' == $instance['group_default'] ) 71 71 bp_group_member_count(); … … 165 165 <?php 166 166 if ( 'newest-groups' == $_POST['filter'] ) { 167 printf( __( 'created %s ago', 'buddypress' ), bp_get_group_date_created() );167 printf( __( 'created %s', 'buddypress' ), bp_get_group_date_created() ); 168 168 } else if ( 'recently-active-groups' == $_POST['filter'] ) { 169 printf( __( 'active %s ago', 'buddypress' ), bp_get_group_last_active() );169 printf( __( 'active %s', 'buddypress' ), bp_get_group_last_active() ); 170 170 } else if ( 'popular-groups' == $_POST['filter'] ) { 171 171 bp_group_member_count();
Note: See TracChangeset
for help on using the changeset viewer.