From 3213a4ba9f31d657b0f0ef271e76a408c6eda5a7 Mon Sep 17 00:00:00 2001 From: Pavel Loginov Date: Sun, 9 Oct 2022 19:22:57 +0300 Subject: [PATCH] v6.2.1.0 Changelog: https://roxy-wi.org/changelog#6_2_1 --- inc/users.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/users.js b/inc/users.js index 3a0349ac..9dec8d16 100644 --- a/inc/users.js +++ b/inc/users.js @@ -2849,10 +2849,10 @@ function checkGeoipInstallation() { success: function( data ) { data = data.replace(/^\s+|\s+$/g,''); if(data.indexOf('No such file or directory') != '-1') { - $('#cur_geoip').text('Not installed'); + $('#cur_geoip').html('GeoIPLite is installed'); $('#geoip_install').show(); } else { - $('#cur_geoip').text('Installed'); + $('#cur_geoip').html('GeoIPLite is not installed'); $('#geoip_install').hide(); } }