diff --git a/src/bp-settings/actions/general.php b/src/bp-settings/actions/general.php
index 62a6c9e9c..0dbd5bbc8 100644
a
|
b
|
function bp_settings_action_general() { |
158 | 158 | $pass_error = 'empty'; |
159 | 159 | } |
160 | 160 | |
| 161 | $pass_error = apply_filters( 'bp_validate_password', $pass_error ); |
| 162 | |
161 | 163 | // The structure of the $update_user object changed in WP 3.3, but |
162 | 164 | // wp_update_user() still expects the old format. |
163 | 165 | if ( isset( $update_user->data ) && is_object( $update_user->data ) ) { |
… |
… |
function bp_settings_action_general() { |
235 | 237 | } |
236 | 238 | } |
237 | 239 | |
| 240 | $feedback = apply_filters( 'bp_settings_feedback', $feedback, $feedback_type ); |
| 241 | |
238 | 242 | // Set the feedback. |
239 | 243 | bp_core_add_message( implode( "\n", $feedback ), $feedback_type ); |
240 | 244 | |