Skip to:
Content

BuddyPress.org

Ticket #1728: 1728.002.diff

File 1728.002.diff, 708 bytes (added by cnorris23, 14 years ago)

replace deprecated _c() with _x()

  • bp-core.php

     
    13851385
    13861386                if ( ( $count2 = floor( ( $since - ( $seconds * $count ) ) / $seconds2 ) ) != 0 ) {
    13871387                        /* Add to output var */
    1388                         $output .= ( 1 == $count2 ) ? _c( ',|Separator in time since', 'buddypress' ) . ' 1 '. $chunks[$i + 1][1] : _c( ',|Separator in time since', 'buddypress' ) . ' ' . $count2 . ' ' . $chunks[$i + 1][2];
     1388                        $output .= ( 1 == $count2 ) ? _x( ',|Separator in time since', 'buddypress' ) . ' 1 '. $chunks[$i + 1][1] : _x( ',|Separator in time since', 'buddypress' ) . ' ' . $count2 . ' ' . $chunks[$i + 1][2];
    13891389                }
    13901390        }
    13911391