Skip to content

Commit 8ee6337

Browse files
committedJan 22, 2020
Move validation to the top
1 parent d9cc091 commit 8ee6337

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎includes/integrations/maxmind-geolocation/class-wc-integration-maxmind-geolocation.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -132,14 +132,14 @@ public function get_database_service() {
132132
* @throws Exception When the license key is invalid.
133133
*/
134134
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.
136139
if ( empty( $value ) ) {
137140
return $value;
138141
}
139142

140-
// Trim whitespaces and strip slashes.
141-
$value = $this->validate_password_field( $key, $value );
142-
143143
// Check the license key by attempting to download the Geolocation database.
144144
$tmp_database_path = $this->database_service->download_database( $value );
145145
if ( is_wp_error( $tmp_database_path ) ) {

0 commit comments

Comments
 (0)
Please sign in to comment.