diff --git src/bp-core/admin/bp-core-admin-functions.php src/bp-core/admin/bp-core-admin-functions.php
index 095d41b..431b8f1 100644
|
|
function bp_admin_email_maybe_add_translation_notice() { |
828 | 828 | return; |
829 | 829 | } |
830 | 830 | |
| 831 | $admin_page = 'tools.php'; |
| 832 | |
| 833 | if ( bp_is_network_activated() && ! bp_is_multiblog_mode() ) { |
| 834 | $admin_page = 'admin.php'; |
| 835 | } |
| 836 | |
831 | 837 | bp_core_add_admin_notice( |
832 | 838 | sprintf( |
833 | 839 | __( 'Are your emails in the wrong language? Go to <a href="%s">BuddyPress Tools and run the "reinstall emails"</a> tool.', 'buddypress' ), |
834 | | bp_get_admin_url( 'tools.php?page=bp-tools' ) |
| 840 | esc_url( add_query_arg( 'page', 'bp-tools', bp_get_admin_url( $admin_page ) ) ) |
835 | 841 | ), |
836 | 842 | 'updated' |
837 | 843 | ); |