From 6bc0ad1604218b6be1f6f75d39dfd5a456938a85 Mon Sep 17 00:00:00 2001 From: andryyy Date: Tue, 15 Jun 2021 11:40:39 +0200 Subject: [PATCH] [Web] Change SASL IP link to BGP HE --- data/web/js/site/user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/web/js/site/user.js b/data/web/js/site/user.js index 88712d57..fb771f2c 100644 --- a/data/web/js/site/user.js +++ b/data/web/js/site/user.js @@ -99,7 +99,7 @@ jQuery(function($){ var local_datetime = datetime.toLocaleDateString(undefined, {year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit"}); item.app_password ? app_password = ' (App)' : app_password = "", item.location ? ip_location = ' ' : ip_location = ""; "smtp" == item.service ? service = '
' + item.service.toUpperCase() + '
' : "imap" == item.service ? service = '
' + item.service.toUpperCase() + "
" : service = '
' + item.service.toUpperCase() + "
"; - item.real_rip.startsWith("Web") ? real_rip = item.real_rip : real_rip = '' + item.real_rip + ""; + item.real_rip.startsWith("Web") ? real_rip = item.real_rip : real_rip = '' + item.real_rip + ""; ip_data = real_rip + ip_location + app_password; $(".last-login").append('
  • ' + local_datetime + " " + service + " " + lang.from + " " + ip_data + "
  • "); }) @@ -406,4 +406,4 @@ jQuery(function($){ $('#userFilterModal').on('hidden.bs.modal', function () { $('#user_sieve_filter').text(lang.loading); }); -}); \ No newline at end of file +});