AW: Fehler im Editor (Eigene Seiten)???
Das liegt aber nicht an der 4.53. Von der 4.01 zur 4.02 wurde die Initialisierung vom CKEditor seitens JTL geaendert. Die neue Form funktioniert allerdings nicht.
Siehe: http://forum.jtl-software.de/fehler...n-templates-bootstrap-tpl_inc-footer-tpl.html (Uebrigens vom 21.12.2015)
Da es scheinbar keinen Hotfix gibt, die alte Form aus der 4.01:
Das liegt aber nicht an der 4.53. Von der 4.01 zur 4.02 wurde die Initialisierung vom CKEditor seitens JTL geaendert. Die neue Form funktioniert allerdings nicht.
Siehe: http://forum.jtl-software.de/fehler...n-templates-bootstrap-tpl_inc-footer-tpl.html (Uebrigens vom 21.12.2015)
Da es scheinbar keinen Hotfix gibt, die alte Form aus der 4.01:
Code:
admin\templates\bootstrap\tpl_inc\footer.tpl
HTML:
<script type="text/javascript">
if (typeof CKEDITOR !== 'undefined') {ldelim}
CKEDITOR.config.startupMode = {if isset($Einstellungen.global.admin_ckeditor_mode) && $Einstellungen.global.admin_ckeditor_mode == 'Q'}'source'{else}'wysiwyg'{/if};
CKEDITOR.config.htmlEncodeOutput = false;
CKEDITOR.config.allowedContent = true;
CKEDITOR.config.enterMode = CKEDITOR.ENTER_P;
CKEDITOR.config.entities = false;
CKEDITOR.config.entities_latin = false;
CKEDITOR.config.entities_greek = false;
CKEDITOR.config.ignoreEmptyParagraph = false;
CKEDITOR.config.filebrowserBrowseUrl = '{$PFAD_KCFINDER}browse.php?type=Sonstiges&token={$smarty.session.jtl_token}';
CKEDITOR.config.filebrowserImageBrowseUrl = '{$PFAD_KCFINDER}browse.php?type=Bilder&token={$smarty.session.jtl_token}';
CKEDITOR.config.filebrowserFlashBrowseUrl = '{$PFAD_KCFINDER}browse.php?type=Videos&token={$smarty.session.jtl_token}';
CKEDITOR.config.filebrowserUploadUrl = '{$PFAD_KCFINDER}upload.php?type=Sonstiges&token={$smarty.session.jtl_token}';
CKEDITOR.config.filebrowserImageUploadUrl = '{$PFAD_KCFINDER}upload.php?type=Bilder&token={$smarty.session.jtl_token}';
CKEDITOR.config.filebrowserFlashUploadUrl = '{$PFAD_KCFINDER}upload.php?type=Videos&token={$smarty.session.jtl_token}';
CKEDITOR.config.extraPlugins = 'codemirror';
CKEDITOR.config.fillEmptyBlocks = false;
CKEDITOR.config.autoParagraph = false;
{rdelim}
</script>