]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-country.php
More fixes, thanks to Piter01
[mailer.git] / inc / extensions / ext-country.php
index e2c8df89cb7faeb57862b7b622c342faebdaa32a..a74596f2ac497b4bdfb5c668cd20876e19be5b6f 100644 (file)
@@ -66,7 +66,7 @@ PRIMARY KEY(id)
        $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (`action`,`what`,`title`,`descr`,`sort`) VALUES ('country','list_country','Verwalten','Hinzufügen, Ändern und Löschen von Ländercodes.', 1)";
 
        // Add entry to user table
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data ADD country_code BIGINT(20) UNSIGNED NOT NULL DEFAULT '1'";
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data ADD country_code BIGINT(20) UNSIGNED NOT NULL DEFAULT 1";
        break;
 
 case "remove": // Do stuff when removing extension
@@ -114,9 +114,6 @@ default: // Do stuff when extension is loaded
        break;
 }
 
-// Language file prefix
-$EXT_LANG_PREFIX = "country";
-
 // Keep this extension always active!
 $EXT_ALWAYS_ACTIVE = "Y";