=== removed file 'uc_store/countries/oman_512_1.cif'
--- uc_store/countries/oman_512_1.cif	2009-07-08 04:04:01 +0000
+++ uc_store/countries/oman_512_1.cif	1970-01-01 00:00:00 +0000
@@ -1,9 +0,0 @@
-<?php
-
-function oman_install() {
-  db_query("INSERT INTO {uc_countries} VALUES ('512', 'Oman', 'OM', 'OMN', 1)");
-
-   variable_set('uc_address_format_388',
-    "!company\r\n!first_name !last_name\r\n!street1\r\n!street2"
-   ."\r\n!city - !postal_code\r\n !country_name_if");
-}

=== added file 'uc_store/countries/oman_512_2.cif'
--- uc_store/countries/oman_512_2.cif	1970-01-01 00:00:00 +0000
+++ uc_store/countries/oman_512_2.cif	2009-07-08 13:50:28 +0000
@@ -0,0 +1,41 @@
+<?php
+//$id$
+
+function oman_install() {
+  db_query("INSERT INTO {uc_countries} VALUES ('512', 'Oman', 'OM', 'OMN', 2)");
+  
+  db_query("INSERT INTO {uc_zones} (zone_country_id, zone_code, zone_name) VALUES "
+          ."(512, 'BA', 'Al Batinah'),"
+          ."(512, 'DA', 'Ad Dakhiliyah'),"
+          ."(512, 'JA', 'Al Janubiyah'),"
+          ."(512, 'MA', 'Masqat'),"
+          ."(512, 'MU', 'Musandam'),"
+          ."(512, 'SH', 'Ash Sharqiyah'),"
+          ."(512, 'WU', 'Al Wusta'),"
+          ."(512, 'ZA', 'Az Zahirah')");
+
+  variable_set('uc_address_format_512',
+   "!company\r\n!first_name !last_name\r\n!street1\r\n!street2"
+  ."\r\n!city\r\n!zone_name, !country_name_if");
+}
+
+
+function oman_update($version) {
+  switch ($version){
+    case 2:
+      db_query("INSERT INTO {uc_zones} (zone_country_id, zone_code, zone_name) VALUES "
+          ."(512, 'BA', 'Al Batinah'),"
+          ."(512, 'DA', 'Ad Dakhiliyah'),"
+          ."(512, 'JA', 'Al Janubiyah'),"
+          ."(512, 'MA', 'Masqat'),"
+          ."(512, 'MU', 'Musandam'),"
+          ."(512, 'SH', 'Ash Sharqiyah'),"
+          ."(512, 'WU', 'Al Wusta'),"
+          ."(512, 'ZA', 'Az Zahirah')");
+          
+      variable_set('uc_address_format_512',
+       "!company\r\n!first_name !last_name\r\n!street1\r\n!street2"
+      ."\r\n!city\r\n!zone_name, !country_name_if");
+    break;
+  }
+}
\ No newline at end of file

