diff --git a/include/phone.hu.inc b/include/phone.hu.inc
index 75f5d33..b38df6f 100644
--- a/include/phone.hu.inc
+++ b/include/phone.hu.inc
@@ -62,7 +62,7 @@ function format_hu_phone_number($phonenumber, $field = FALSE) {
   preg_match($regex, $phonenumber, $matches);
 
   // construct ten-digit phone number
-  $phonenumber = '+36 ' . $matches[1] . ' ' . $matches[2] . ' ' . $matches[3] . ' ' . $matches[4];
+  $phonenumber = '+36 ' . $matches[1] . ' ' . $matches[2] . ' ' . $matches[3];
 
   return $phonenumber;
 }
diff --git a/phone.module b/phone.module
index 098c717..437f2a5 100644
--- a/phone.module
+++ b/phone.module
@@ -25,8 +25,8 @@ function phone_countries($code = NULL) {
       'es' => 'Spain',
       'au' => 'Australia',
       'cs' => 'Czech Republic',
-      'hu' => 'Poland - mobiles only',
-      'pl' => 'Netherland',
+      'hu' => 'Hungary',
+      'pl' => 'Poland - mobiles only',
       'nl' => 'Netherland',
       'se' => 'Sweden',
       'za' => 'South Africa',
