diff --git a/setup/dbupdate.php b/setup/dbupdate.php index ab89369..bd4ff60 100644 --- a/setup/dbupdate.php +++ b/setup/dbupdate.php @@ -120,10 +120,13 @@ $contentChunks = txtFileToArray('data/examples.txt'); $sysadminChunk = txtFileToArray('data/sysadmin.txt'); +/* if ($_SESSION['plugin_newsletter'] == 'true') { $newsletter = txtFileToArray('data/plugin_newsletter.txt'); $pluginChunks = array_merge($pluginChunks, $newsletter); } + * + */ if ($_SESSION['plugin_content_allocation'] == 'true') { $content_allocation = txtFileToArray('data/plugin_content_allocation.txt'); diff --git a/setup/steps/forms/additionalplugins.php b/setup/steps/forms/additionalplugins.php index 6e44559..e5207dd 100644 --- a/setup/steps/forms/additionalplugins.php +++ b/setup/steps/forms/additionalplugins.php @@ -58,7 +58,7 @@ class cSetupAdditionalPlugins extends cSetupMask { // add new plugins to this array and you're done. $aPlugins = array(); - $aPlugins['plugin_newsletter'] = array('label' => i18n_setup('Newsletter'), 'desc' => i18n_setup('Newsletterfunctionality for dispatching text newsletters and HTML-Newsletters, extensible with professional newsletter extensions. Definition of newsletter recipients and groups of recipients. Layout design of the HTML-Newsletters by ConLite articles.')); + //$aPlugins['plugin_newsletter'] = array('label' => i18n_setup('Newsletter'), 'desc' => i18n_setup('Newsletterfunctionality for dispatching text newsletters and HTML-Newsletters, extensible with professional newsletter extensions. Definition of newsletter recipients and groups of recipients. Layout design of the HTML-Newsletters by ConLite articles.')); $aPlugins['plugin_content_allocation'] = array('label' => i18n_setup('Content Allocation'), 'desc' => i18n_setup('For the representation and administration of content, 4fb developed the Content Allocation and content include technology. This technology dynamically allows on basis of a Template, to put the content in different places and in different formats according to several criteria.')); $aPlugins['plugin_mod_rewrite'] = array('label' => i18n_setup('Mod Rewrite'), 'desc' => i18n_setup('Creates so called Clean URLs for a ConLite installation'));