]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-imprint.php
Invalid responses from check-updates3.php call should be traced back and fixed. This...
[mailer.git] / inc / extensions / ext-imprint.php
index ae40b5c711659e91aaec6387718f3d0aab455221..370cc6155c11c3e4703725eb53f61d72f436ade2 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 06/06/2009 *
- * ================                             Last change: 10/23/2009 *
+ * Mailer v0.2.1-FINAL                                Start: 06/06/2009 *
+ * ===================                          Last change: 10/23/2009 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : ext-imprint.php                                  *
@@ -65,7 +65,7 @@ switch (getExtensionMode()) {
                // Create imprint data table
                addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_imprint_data`");
                addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_imprint_data` (
-`imprint_id` BIGINT(20) NOT NULL AUTO_INCREMENT,
+`imprint_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
 `imprint_key` VARCHAR(255) NOT NULL DEFAULT '',
 `imprint_value` VARCHAR(255) NOT NULL DEFAULT '',
 UNIQUE (`imprint_key`),
@@ -119,7 +119,7 @@ PRIMARY KEY (`imprint_id`)
                break;
 
        default: // Unknown extension mode
-               DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
+               logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
                break;
 } // END - switch