Thanks for your reply but doesn't help much
If I fill in some text into the database via PHPMYadmin the editor shows them correctly.
When I edit this text via the WYSIWYG-editor it doesn't overwrite the text I added before which must have something todo with:
PHP Code:
if (isset($_POST['WYSIWYG_HTML']))
{
require_once('./includes/functions_wysiwyg.php');
$newpost['message'] = convert_wysiwyg_html_to_bbcode($_POST['WYSIWYG_HTML'], 0);
}
else
{
$newpost['message'] = &$_POST['message'];
}
The code seems to empty the variable.. Whatever I enter, it doesn't get saved.
- What's already in the database: TEST
- What I see when I want to edit the field via the editor: TEST
- What I get when I enter 'BLAAAAAA' to the editor and click 'save': TEST