From d8e32b6acb433dff2626040248653c87c8a8f1fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=8Ceslav=20Przywara?= Date: Thu, 15 Dec 2016 23:39:58 +0100 Subject: [PATCH] Fix typo. --- all-in-one-wp-security/classes/wp-security-user-login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/all-in-one-wp-security/classes/wp-security-user-login.php b/all-in-one-wp-security/classes/wp-security-user-login.php index 33a3250..f1f9209 100644 --- a/all-in-one-wp-security/classes/wp-security-user-login.php +++ b/all-in-one-wp-security/classes/wp-security-user-login.php @@ -296,7 +296,7 @@ function send_ip_lock_notification_email($username, $ip_range, $ip) $email_msg .= __('Username:', 'all-in-one-wp-security-and-firewall') . ' ' . $username . "\n"; $email_msg .= __('IP Address:', 'all-in-one-wp-security-and-firewall') . ' ' . $ip . "\n\n"; $email_msg .= __('IP Range:', 'all-in-one-wp-security-and-firewall') . ' ' . $ip_range . '.*' . "\n\n"; - $email_msg .= __("Log into your site's WordPress administration panel to see the duration of the lockout or to unlock the user.','all-in-one-wp-security-and-firewall") . "\n"; + $email_msg .= __("Log into your site's WordPress administration panel to see the duration of the lockout or to unlock the user.",'all-in-one-wp-security-and-firewall') . "\n"; $site_title = get_bloginfo( 'name' ); $from_name = empty($site_title)?'WordPress':$site_title; $email_header = 'From: '.$from_name.' <'.get_bloginfo('admin_email').'>' . "\r\n\\";