diff --git a/config.php b/config.php
index 3345033b..32f8d69b 100644
--- a/config.php
+++ b/config.php
@@ -85,6 +85,7 @@ $config = array(
'account_welcome_mail' => true, // send welcome email when user registers
'account_mail_change' => 2, // how many days user need to change email to account - block hackers
'account_country' => true, // user will be able to set country of origin when registering account, this information will be viewable in others places aswell
+ 'account_country_recognize' => true, // should country of user be automatically recognized by his IP? This makes an external API call to http://ipinfo.io
'account_change_character_name' => false, // can user change their character name for premium points?
'account_change_character_name_points' => 30, // cost of name change
'account_change_character_sex' => false, // can user change their character sex for premium points?
diff --git a/system/pages/createaccount.php b/system/pages/createaccount.php
index 44877fd2..acf18d38 100644
--- a/system/pages/createaccount.php
+++ b/system/pages/createaccount.php
@@ -384,6 +384,14 @@ function validate_form(thisform)
}
@@ -446,7 +454,7 @@ Also you have to agree to the terms presented below. If you have done so, your a
echo '';
foreach($config['countries'] as $code => $c)
- echo '';
+ echo '';
?>