]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-debug.php
Updated copyright notice as there are changes in this year
[mailer.git] / inc / extensions / ext-debug.php
index 6db2f71dde0ec09bf9c7670d59c48461eb446f12..243d80d765eca379a5b1db2f5cd68172d5eaba36 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -53,7 +53,7 @@ setExtensionAlwaysActive('Y');
 enableExtensionProductive(FALSE);
 
 switch (getExtensionMode()) {
-       case 'register': // Do stuff when installation is running
+       case 'setup': // Do stuff when installation is running
                // Table for debug log entries
                addDropTableSql('debug_log');
                addCreateTableSql('debug_log', "
@@ -61,7 +61,7 @@ switch (getExtensionMode()) {
 `sender_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
 `timestamp` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00',
 `file` VARCHAR(255) NOT NULL DEFAULT '',
-`line` MEDIUMINT NOT NOT NULL DEFAULT 0,
+`line` MEDIUMINT NOT NULL DEFAULT 0,
 `message` LONGTEXT NOT NULL,
 `comment` TINYTEXT NOT NULL,
 `status` ENUM('NEW','PENDING','ACCEPTED','FIXED','INVALID','DUBLICATE','SPAM') NOT NULL DEFAULT 'NEW',