Just detected a small "bug" that in the textarea field of the text with image contentpart the linebreaks are not replaced by "<br/>" as in the textarea field in the pain text contentpart.
(I'm not using a wysiwyg editor - safari user)
Perhaps I can find the place to fix it.
no line break recognition in text with image textarea
The workaround:
In include/inc_front/content/cnt1.article.inc.php enclose the following expressions in each case statement of the switch control:
with nl2br(). So they look then like this:
exept the switch case commented with "im Text links". There you have to put the nl2br() around the following code at the second line of the case statement:
In include/inc_front/content/cnt1.article.inc.php enclose the following expressions in each case statement of the switch control:
Code: Select all
div_class($crow["acontent_text"],$template_default["article"]["text_class"]
Code: Select all
nl2br(div_class($crow["acontent_text"],$template_default["article"]["text_class"]))
Code: Select all
$crow["acontent_text"]