You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,6 +121,10 @@ See [Documentation](https://github.com/yellowtree/geoip-detect/wiki) for more in
121
121
1. Lookup page (under Tools > Geolocation Lookup)
122
122
2. Options page (under Preferences > Geolocation IP Detection)
123
123
124
+
= 5.6.0 =
125
+
126
+
This update removes the deprecated shortcode [geoip_detect ...] (read the changelog for more details)
127
+
124
128
= 5.5.0 =
125
129
126
130
When using the default datasource "hostip.info", the region code (i.e. CA) is now correctly moved to the property `mostSpecificSubdivision` (previously, it was part of the property `city`)
@@ -131,6 +135,11 @@ If you are using AJAX mode, please read the changelog.
131
135
132
136
## Changelog ##
133
137
138
+
= 5.6.0 =
139
+
* FIX [!]: Remove deprecated shortcode [geoip_detect] (Security - CVE-2025-57993). If you are still using it, use [geoip_detect2 ...] instead, you might have to change the property name.
140
+
* FIX: Compatibility with Wordpress 6.7 (Textdomain loading)
141
+
* Library updates
142
+
134
143
= 5.5.0 =
135
144
* FIX [!]: In the datasource "hostip.info", the region code (i.e. CA) is now correctly moved to the property `mostSpecificSubdivision` (previously, it was part of the property `city`)
Copy file name to clipboardExpand all lines: check_compatibility.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -96,11 +96,11 @@ function checkCompatible() {
96
96
$line2 = __('These incompatible files have been found to be loaded from another plugin: ', 'geoip-detect') . $data;
97
97
$line3 = __('Please test if looking up an IP adress works without an PHP Error. If it works, you can dismiss this notice. It will appear again when their libraries are changed.', 'geoip-detect');
98
98
99
-
$body = <<<BODY
99
+
$body = "
100
100
<p><i>$line1</i></p>
101
101
<p>$line2</p>
102
102
<p>$line3</p>
103
-
BODY;
103
+
";
104
104
$this->adminNotices[] = [
105
105
'id' => 'maxmind_vendor_old_' . md5($data),
106
106
'title' => __('Geolocation IP Detection: Warning: Old Maxmind Libraries detected.', 'geoip-detect'),
0 commit comments