]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-imprint.php
Marked some unfinished extensions as 'work-in-progress'
[mailer.git] / inc / extensions / ext-imprint.php
index ae40b5c711659e91aaec6387718f3d0aab455221..315bc89117b767efd16dea4745a8b929b83650aa 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                                  *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -65,7 +66,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 +120,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 in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));
                break;
 } // END - switch