=== added file 'uc_store/countries/malaysia_458_1.cif'
--- uc_store/countries/malaysia_458_1.cif	1970-01-01 00:00:00 +0000
+++ uc_store/countries/malaysia_458_1.cif	2008-09-27 22:18:03 +0000
@@ -0,0 +1,30 @@
+<?php
+// $Id$
+
+function malaysia_install() {
+  // VALUES = Country ID, Country Name, 2-digit Code, 3-digit Code, File Version
+  db_query("INSERT INTO {uc_countries} VALUES (458, 'Malaysia', 'MY', 'MYS', 1)");
+
+  // Make the entries in the zones table.
+  db_query("INSERT INTO {uc_zones} (zone_country_id, zone_code, zone_name) VALUES "
+          ."(458, 'JH', 'Johor'),"
+          ."(458, 'KD', 'Kedah'),"
+          ."(458, 'KN', 'Kelantan'),"
+          ."(458, 'KL', 'Kuala Lumpur'),"
+          ."(458, 'ML', 'Malacca'),"
+          ."(458, 'NS', 'Negeri Sembilan'),"
+          ."(458, 'PH', 'Pahang'),"
+          ."(458, 'PK', 'Perak'),"
+          ."(458, 'PS', 'Perlis'),"
+          ."(458, 'PG', 'Penang'),"
+          ."(458, 'WP', 'Wilayah Persekutuan'),"
+          ."(458, 'SL', 'Selangor'),"
+          ."(458, 'TR', 'Terengganu'),"
+          ."(458, 'LB', 'Labuan'),"
+          ."(458, 'SB', 'Sabah'),"
+          ."(458, 'SR', 'Sarawak')");
+
+  uc_set_address_format(458,
+               "!company\r\n!first_name !last_name\r\n!street1\r\n!street2"
+              ."\r\n!city, !zone_code !postal_code\r\n!country_name_if");
+}

