Also any changes were not saved properly.
I dug around and found its a problem with the way TinyMCE is configured in its plugin, it looks for fields with the id of serendipity[plugin][content] and serendipity[plugin][pre-content]. Well on the static page the id's are all "nuggets#". Seeing this as a retarded setup I patched the
/plugins/serendipity_event_staticpage/serendipity_event_staticpage.php file in the following way.
Code: Select all
*** serendipity_event_staticpage.php 2009-11-18 16:55:06.000000000 -0600
--- serendipity_event_staticpage.php.new 2009-11-18 16:57:22.000000000 -0600
***************
*** 2163,2169 ****
<td colspan="2">
<?php } ?>
<div>
! <textarea class="direction_<?php echo $lang_direction; ?>" style="width: 100%" id="nuggets<?php echo $elcount; ?>" name="serendipity[plugin][<?php echo $config_item; ?>]" rows="20" cols="80"><?php echo $hvalue; ?></textarea>
</div>
<?php if (!$is_smarty) { ?>
--- 2163,2169 ----
<td colspan="2">
<?php } ?>
<div>
! <textarea class="direction_<?php echo $lang_direction; ?>" style="width: 100%" id="serendipity[plugin][<?php echo $config_item; ?>]" name="serendipity[plugin][<?php echo $config_item; ?>]" rows="20" cols="80"><?php echo $hvalue; ?></textarea>
</div>
<?php if (!$is_smarty) { ?>