]> git.mxchange.org Git - mailer.git/commitdiff
This is correct (sorry)
authorRoland Häder <roland@mxchange.org>
Wed, 19 Dec 2012 21:06:15 +0000 (21:06 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 19 Dec 2012 21:06:15 +0000 (21:06 +0000)
inc/xml-functions.php
install/tables.sql

index e180a49fe9fdd69b9db9de59117d45cb569ca71a..d31c992014f3966a9d4ad71afd88503b38a40916 100644 (file)
@@ -238,7 +238,7 @@ function xmlCharacterHandler ($resource, $characters) {
        } // END - if
 
        // @TODO Handle characters
-       die(__FUNCTION__ . ':characters[]='.strlen($characters));
+       die(__FUNCTION__ . ':characters[' . gettype($characters) . ']=' . strlen($characters));
 }
 
 // Checks if given type is valid, makes all lower-case
index 6bb6c27f2b0653531dd5244d9dfbd11051c0dba6..006783b45d59ac1cfd822a19810bf264cd8adc46 100644 (file)
@@ -67,11 +67,11 @@ CREATE TABLE `{?_MYSQL_PREFIX?}_config` (
 
 DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_extensions`;
 CREATE TABLE `{?_MYSQL_PREFIX?}_extensions` (
-  `ext_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
+  `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
   `ext_name` VARCHAR(255) NOT NULL DEFAULT '',
   `ext_active` ENUM('Y','N') NOT NULL DEFAULT 'N',
   `ext_version` VARCHAR(255) NOT NULL DEFAULT 'INVALID',
-  PRIMARY KEY  (`ext_id`)
+  PRIMARY KEY  (`id`)
 ) ENGINE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT 'Extension registry';
 
 DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_guest_menu`;