diff --git a/app/Factory/UserFactory.php b/app/Factory/UserFactory.php index d31a0019b2c9..9b15037f625c 100644 --- a/app/Factory/UserFactory.php +++ b/app/Factory/UserFactory.php @@ -27,7 +27,8 @@ class UserFactory $user->last_login = now(); $user->failed_logins = 0; $user->signature = ''; - $user->theme_id = 0; + $user->theme_id = 0; + $user->user_logged_in_notification = true; return $user; } diff --git a/lang/en/texts.php b/lang/en/texts.php index c7bdffb4bd50..48cfe30beb3a 100644 --- a/lang/en/texts.php +++ b/lang/en/texts.php @@ -2405,7 +2405,7 @@ $LANG = array( 'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba', 'currency_malagasy_ariary' => 'Malagasy ariary', "currency_tongan_pa_anga" => "Tongan Pa'anga", - + 'review_app_help' => 'We hope you\'re enjoying using the app.
If you\'d consider :link we\'d greatly appreciate it!', 'writing_a_review' => 'writing a review', @@ -5183,6 +5183,8 @@ $LANG = array( 'upcoming' => 'Upcoming', 'client_contact' => 'Client Contact', 'uncategorized' => 'Uncategorized', + 'login_notification' => 'Login Notification', + 'login_notification_help' => 'Sends an email notifying that a login has taken place.' ); return $LANG;