The WYSIWYG-editor and the </br> in the extended news window The WYSIWYG-editor add a </br> in the extended news window even if it's empty. This is causing storyteller to add "Read more..." to the article even. "!" from Odin
The WYSIWYG-editor and the </br> in the extended news window Open mod_news.php in an editor and find the following line in function EditNews(): Code: if ($teaser == "blank_image.png") $teaser = ""; Add after this line: Code: if (strlen($newstext2) == 8) $newstext2 = ""; Now you need to do the same modification in function AddNews() which comes after EditNews(). This issue is fixed in the next Storyteller release.