Plugin Directory

Changeset 3369922


Ignore:
Timestamp:
09/29/2025 05:50:40 PM (5 months ago)
Author:
imranmd
Message:

Fixed typo

Location:
user-mass-messaging/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • user-mass-messaging/trunk/includes/class-user-mass-messaging.php

    r3314147 r3369922  
    176176
    177177        // mass messaging hook to send message from user profile connection tab
    178         $this->loader->add_action('bp_before_member_friends_content', $plugin_public, 'mi_add_send_message_button_user_connection_tab');
    179         $this->loader->add_action('wp', $plugin_public, 'mi_handle_message_redirect');
     178        $this->loader->add_action('bp_before_member_friends_content', $plugin_public, 'umm_add_send_message_button_user_connection_tab');
     179        $this->loader->add_action('wp', $plugin_public, 'umm_handle_message_redirect');
    180180
    181181    }
  • user-mass-messaging/trunk/public/class-user-mass-messaging-public.php

    r3314147 r3369922  
    136136
    137137        if (isset($_GET['all_connections']) && ! isset($_GET['component']) && $_GET['all_connections'] == 1 && bp_is_messages_component() && bp_is_current_action('compose')) {                     
    138             add_action('wp_footer', array($this, 'mi_pre_select_connections_on_compose'));
     138            add_action('wp_footer', array($this, 'umm_pre_select_connections_on_compose'));
    139139        } elseif( isset($_GET['component']) && $_GET['component'] == 'team' ){         
    140             add_action('wp_footer', array($this, 'mi_pre_select_connections_on_compose'));
     140            add_action('wp_footer', array($this, 'umm_pre_select_connections_on_compose'));
    141141        }
    142142    }
Note: See TracChangeset for help on using the changeset viewer.