File tree 1 file changed +4
-4
lines changed
includes/integrations/maxmind-geolocation
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -132,14 +132,14 @@ public function get_database_service() {
132
132
* @throws Exception When the license key is invalid.
133
133
*/
134
134
public function validate_license_key_field ( $ key , $ value ) {
135
- // Empty license keys have no need to validate the data.
135
+ // Trim whitespaces and strip slashes.
136
+ $ value = $ this ->validate_password_field ( $ key , $ value );
137
+
138
+ // Empty license keys have no need test downloading a database.
136
139
if ( empty ( $ value ) ) {
137
140
return $ value ;
138
141
}
139
142
140
- // Trim whitespaces and strip slashes.
141
- $ value = $ this ->validate_password_field ( $ key , $ value );
142
-
143
143
// Check the license key by attempting to download the Geolocation database.
144
144
$ tmp_database_path = $ this ->database_service ->download_database ( $ value );
145
145
if ( is_wp_error ( $ tmp_database_path ) ) {
You can’t perform that action at this time.
0 commit comments