Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/10/2023 06:22:42 AM (3 years ago)
Author:
imath
Message:

Core, Activity: remove more never used inited variables in functions

Props upadalavipul, kajalgohel, viralsampat

Fixes #8892
Closes https://github.com/buddypress/buddypress/pull/115

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/bp-activity-notifications.php

    r13441 r13500  
    4343
    4444            /* translators: %s: the current user display name */
    45             $title  = sprintf( __( '@%s Mentions', 'buddypress' ), bp_get_loggedin_user_username() );
     45            $text   = sprintf( __( '@%s Mentions', 'buddypress' ), bp_get_loggedin_user_username() );
    4646            $amount = 'single';
    4747
     
    5858        case 'update_reply':
    5959            $link   = bp_get_notifications_permalink();
    60             $title  = __( 'New Activity reply', 'buddypress' );
     60            $text   = __( 'New Activity reply', 'buddypress' );
    6161            $amount = 'single';
    6262
     
    7777        case 'comment_reply':
    7878            $link   = bp_get_notifications_permalink();
    79             $title  = __( 'New Activity comment reply', 'buddypress' );
     79            $text   = __( 'New Activity comment reply', 'buddypress' );
    8080            $amount = 'single';
    8181
Note: See TracChangeset for help on using the changeset viewer.