Hmm vielleicht stehe ich ja mal wieder auf der Leitung, aber da steht sogar "longtext".
Hab es mal auf "text" umgestellt, aber das nutzt auch nix.
Der Text bricht an der gleichen stelle wieder ab.

Das sind die DB Einträge die ich für das Newsletter-System machen mußte.

CREATE TABLE `addon_meganewssystem_config` (
`grund_newsletter` longtext NOT NULL,
`testmailaddy` varchar(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;



INSERT INTO `addon_meganewssystem_config` (`grund_newsletter`, `testmailaddy`) VALUES ('<html></html>', 'blubb@blibb.de');



CREATE TABLE `addon_meganewssystem_log` (
`ID` int(5) NOT NULL auto_increment,
`timestamp` int(14) NOT NULL,
`beschreibung` varchar(255) NOT NULL,
`nlinhalt` text NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
Wie gesagt, das hatte ich beim alten System auch schon, daher dachte ich es ist etwas globales irgendwo.