]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-newsletter.php
Added update_year.sh (still not fully flexible) and updated all years with it.
[mailer.git] / inc / extensions / ext-newsletter.php
index d4efcfaaf40b54d799f0b0821566462cddd18cc1..61614407de05757b904729a82fc057d0fa532bff 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 - 2015 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -50,7 +50,7 @@ setExtensionVersionHistory(array('0.0.0', '0.0.1', '0.0.2', '0.0.3', '0.0.4', '0
 enableExtensionProductive(FALSE);
 
 switch (getExtensionMode()) {
-       case 'register': // Do stuff when installation is running
+       case 'setup': // Do stuff when installation is running
                // SQL commands to run
                addExtensionSql('');
                break;
@@ -218,7 +218,7 @@ INDEX `topic` (`nl_topic_id`)",
                // @TODO Move these into configuration
                $GLOBALS['url_ends'] = array(
                        ' ',
-                       chr(10),
+                       PHP_EOL,
                        chr(13),
                        ')',
                );
@@ -233,7 +233,7 @@ INDEX `topic` (`nl_topic_id`)",
                break;
 
        default: // Unknown extension mode
-               logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));
+               reportBug(__FILE__, __LINE__, sprintf('Unknown extension mode %s in extension %s detected.', getExtensionMode(), getCurrentExtensionName()));
                break;
 } // END - switch